diff options
author | Tim Shen <timshen91@gmail.com> | 2017-02-10 21:17:35 +0000 |
---|---|---|
committer | Tim Shen <timshen91@gmail.com> | 2017-02-10 21:17:35 +0000 |
commit | 21a960b6a6271ec993aad61d1a1c7389f9b064a3 (patch) | |
tree | 6461949381609489e29e98d37b94966fe2d76d3b /llvm/lib | |
parent | fb02f7140a7c6db60f7b82b8f0d73b1477b289de (diff) | |
download | bcm5719-llvm-21a960b6a6271ec993aad61d1a1c7389f9b064a3.tar.gz bcm5719-llvm-21a960b6a6271ec993aad61d1a1c7389f9b064a3.zip |
Fix a silly syntax error.
llvm-svn: 294783
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp b/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp index b7cc5ec9db2..657423f974a 100644 --- a/llvm/lib/Target/PowerPC/PPCAsmPrinter.cpp +++ b/llvm/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."); } } |