projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
071c62f
)
fix quoting problem jim noticed!
author
Chris Lattner
<sabre@nondot.org>
Mon, 25 Jan 2010 23:28:03 +0000
(23:28 +0000)
committer
Chris Lattner
<sabre@nondot.org>
Mon, 25 Jan 2010 23:28:03 +0000
(23:28 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@94472
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp
patch
|
blob
|
history
diff --git
a/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp
b/lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp
index 8cd0c5b2df37c5aa9a2d5e3cbfa8eb0118a9743b..1b2b8abc5770a7f0039d91fb0b94491bad25e4d4 100644
(file)
--- a/
lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp
+++ b/
lib/Target/ARM/AsmPrinter/ARMAsmPrinter.cpp
@@
-922,7
+922,7
@@
MCSymbol *ARMAsmPrinter::
GetARMJTIPICJumpTableLabel2(unsigned uid, unsigned uid2) const {
SmallString<60> Name;
raw_svector_ostream(Name) << MAI->getPrivateGlobalPrefix() << "JTI"
- << getFunctionNumber() << '_' << uid << '_' << uid2
<< '\n'
;
+ << getFunctionNumber() << '_' << uid << '_' << uid2;
return OutContext.GetOrCreateSymbol(Name.str());
}