From: Tim Shen Date: Fri, 10 Feb 2017 21:17:35 +0000 (+0000) Subject: Fix a silly syntax error. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f803c25d0fd53c8a654c3fb0e50658af06ecaf1e;p=llvm Fix a silly syntax error. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@294783 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/PowerPC/PPCAsmPrinter.cpp b/lib/Target/PowerPC/PPCAsmPrinter.cpp index b7cc5ec9db2..657423f974a 100644 --- a/lib/Target/PowerPC/PPCAsmPrinter.cpp +++ b/lib/Target/PowerPC/PPCAsmPrinter.cpp @@ -1136,8 +1136,8 @@ void PPCLinuxAsmPrinter::EmitInstruction(const MachineInstr *MI) { // 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."); } }