[llvm] r294783 - Fix a silly syntax error.

Tim Shen via llvm-commits llvm-commits at lists.llvm.org
Fri Feb 10 13:17:35 PST 2017


Author: timshen
Date: Fri Feb 10 15:17:35 2017
New Revision: 294783

URL: http://llvm.org/viewvc/llvm-project?rev=294783&view=rev
Log:
Fix a silly syntax error.

Modified:
    llvm/trunk/lib/Target/PowerPC/PPCAsmPrinter.cpp

Modified: llvm/trunk/lib/Target/PowerPC/PPCAsmPrinter.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/PowerPC/PPCAsmPrinter.cpp?rev=294783&r1=294782&r2=294783&view=diff
==============================================================================
--- llvm/trunk/lib/Target/PowerPC/PPCAsmPrinter.cpp (original)
+++ llvm/trunk/lib/Target/PowerPC/PPCAsmPrinter.cpp Fri Feb 10 15:17:35 2017
@@ -1136,8 +1136,8 @@ void PPCLinuxAsmPrinter::EmitInstruction
     // PPC's tail call instruction, e.g. PPC::TCRETURNdi8, doesn't really
     // lower to a PPC::B instruction. The PPC::B instruction is generated
     // before it, and handled by the normal case.
-    llvm_unreachable("Tail call is handled in the normal case. See comments
-                     around this assert.");
+    llvm_unreachable("Tail call is handled in the normal case. See comments"
+                     "around this assert.");
   }
 }
 




More information about the llvm-commits mailing list