diff options
| author | Evan Cheng <evan.cheng@apple.com> | 2008-09-20 00:13:08 +0000 |
|---|---|---|
| committer | Evan Cheng <evan.cheng@apple.com> | 2008-09-20 00:13:08 +0000 |
| commit | 9d917beba638f78190f9deb658c09fcc6753a8db (patch) | |
| tree | ffee06c902680f273a285f2a1429952bd2e9826e /llvm/lib | |
| parent | 098786e9f79cb5fde96e842f9ef40555f55683cf (diff) | |
| download | bcm5719-llvm-9d917beba638f78190f9deb658c09fcc6753a8db.tar.gz bcm5719-llvm-9d917beba638f78190f9deb658c09fcc6753a8db.zip | |
80 column violation.
llvm-svn: 56377
Diffstat (limited to 'llvm/lib')
| -rw-r--r-- | llvm/lib/Target/X86/AsmPrinter/X86IntelAsmPrinter.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/llvm/lib/Target/X86/AsmPrinter/X86IntelAsmPrinter.cpp b/llvm/lib/Target/X86/AsmPrinter/X86IntelAsmPrinter.cpp index ba1a164eb00..25a1995ca79 100644 --- a/llvm/lib/Target/X86/AsmPrinter/X86IntelAsmPrinter.cpp +++ b/llvm/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"; } |

