summaryrefslogtreecommitdiff
path: root/lib/Target
diff options
context:
space:
mode:
authorEvan Cheng <evan.cheng@apple.com>2008-09-20 00:13:08 +0000
committerEvan Cheng <evan.cheng@apple.com>2008-09-20 00:13:08 +0000
commit0333920a05e00e9bbd9b277ea2474b33e2db5063 (patch)
tree8c2cc77c56c37753cf42f6c19a1657c0058cac1d /lib/Target
parent7e8ef60e3cff69cadc73187c0fc0df22caad3994 (diff)
downloadllvm-0333920a05e00e9bbd9b277ea2474b33e2db5063.tar.gz
llvm-0333920a05e00e9bbd9b277ea2474b33e2db5063.tar.bz2
llvm-0333920a05e00e9bbd9b277ea2474b33e2db5063.tar.xz
80 column violation.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@56377 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r--lib/Target/X86/AsmPrinter/X86IntelAsmPrinter.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/lib/Target/X86/AsmPrinter/X86IntelAsmPrinter.cpp b/lib/Target/X86/AsmPrinter/X86IntelAsmPrinter.cpp
index ba1a164eb0..25a1995ca7 100644
--- a/lib/Target/X86/AsmPrinter/X86IntelAsmPrinter.cpp
+++ b/lib/Target/X86/AsmPrinter/X86IntelAsmPrinter.cpp
@@ -508,10 +508,14 @@ bool X86IntelAsmPrinter::doFinalization(Module &M) {
// Output linker support code for dllexported globals
if (!DLLExportedGVs.empty() || !DLLExportedFns.empty()) {
SwitchToDataSection("");
- O << "; WARNING: The following code is valid only with MASM v8.x and (possible) higher\n"
- << "; This version of MASM is usually shipped with Microsoft Visual Studio 2005\n"
- << "; or (possible) further versions. Unfortunately, there is no way to support\n"
- << "; dllexported symbols in the earlier versions of MASM in fully automatic way\n\n";
+ O << "; WARNING: The following code is valid only with MASM v8.x"
+ << "and (possible) higher\n"
+ << "; This version of MASM is usually shipped with Microsoft "
+ << "Visual Studio 2005\n"
+ << "; or (possible) further versions. Unfortunately, there is no "
+ << "way to support\n"
+ << "; dllexported symbols in the earlier versions of MASM in fully "
+ << "automatic way\n\n";
O << "_drectve\t segment info alias('.drectve')\n";
}