diff options
author | Chris Lattner <sabre@nondot.org> | 2009-08-08 00:05:42 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2009-08-08 00:05:42 +0000 |
commit | 7d3374951ee61f90f4e442c50dffb02bb9883ae7 (patch) | |
tree | 9db5c3c0b98e41dc11da6b27698b72cb4e055458 /lib/Target/SystemZ | |
parent | 1c95afc2788b2fa102b5ed8a9721d521afc0d220 (diff) | |
download | external_llvm-7d3374951ee61f90f4e442c50dffb02bb9883ae7.zip external_llvm-7d3374951ee61f90f4e442c50dffb02bb9883ae7.tar.gz external_llvm-7d3374951ee61f90f4e442c50dffb02bb9883ae7.tar.bz2 |
don't check the result of printInstruction anymore.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@78444 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/SystemZ')
-rw-r--r-- | lib/Target/SystemZ/AsmPrinter/SystemZAsmPrinter.cpp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/lib/Target/SystemZ/AsmPrinter/SystemZAsmPrinter.cpp b/lib/Target/SystemZ/AsmPrinter/SystemZAsmPrinter.cpp index b823968..2c73517 100644 --- a/lib/Target/SystemZ/AsmPrinter/SystemZAsmPrinter.cpp +++ b/lib/Target/SystemZ/AsmPrinter/SystemZAsmPrinter.cpp @@ -152,10 +152,7 @@ void SystemZAsmPrinter::printMachineInstruction(const MachineInstr *MI) { ++EmittedInsts; // Call the autogenerated instruction printer routines. - if (printInstruction(MI)) - return; - - llvm_unreachable("Unreachable!"); + printInstruction(MI); } void SystemZAsmPrinter::printPCRelImmOperand(const MachineInstr *MI, int OpNum) { |