OSDN Git Service

fix quoting problem jim noticed!
authorChris Lattner <sabre@nondot.org>
Mon, 25 Jan 2010 23:28:03 +0000 (23:28 +0000)
committerChris 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

index 8cd0c5b..1b2b8ab 100644 (file)
@@ -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());
 }