diff options
author | Nick Lewycky <nicholas@mxc.ca> | 2008-02-07 06:36:26 +0000 |
---|---|---|
committer | Nick Lewycky <nicholas@mxc.ca> | 2008-02-07 06:36:26 +0000 |
commit | 33d4f7792f92eb7652ec3410c88b02ddb5aa7861 (patch) | |
tree | 98ba022ee9af6ece3ceb9268b1c72af52296fd75 /lib/CodeGen/AsmPrinter.cpp | |
parent | b3f5cfc67015b938df933354d33134221ca5a870 (diff) |
Don't make up new directives. (".set_foobar")
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@46848 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/AsmPrinter.cpp')
-rw-r--r-- | lib/CodeGen/AsmPrinter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CodeGen/AsmPrinter.cpp b/lib/CodeGen/AsmPrinter.cpp index 820d75c4a0..b718958f97 100644 --- a/lib/CodeGen/AsmPrinter.cpp +++ b/lib/CodeGen/AsmPrinter.cpp @@ -157,7 +157,7 @@ bool AsmPrinter::doFinalization(Module &M) { else if (!I->hasInternalLinkage()) assert(0 && "Invalid alias linkage"); - O << TAI->getSetDirective() << Name << ", " << Target << "\n"; + O << TAI->getSetDirective() << ' ' << Name << ", " << Target << "\n"; // If the aliasee has external weak linkage it can be referenced only by // alias itself. In this case it can be not in ExtWeakSymbols list. Emit |