commit | 2698cb6811276736a8e892e545609a9048a917fe | [log] [tgz] |
---|---|---|
author | Chris Lattner <sabre@nondot.org> | Sat Aug 08 00:05:42 2009 +0000 |
committer | Chris Lattner <sabre@nondot.org> | Sat Aug 08 00:05:42 2009 +0000 |
tree | 9db5c3c0b98e41dc11da6b27698b72cb4e055458 | |
parent | 941222eea05cb5e0bf6b1789c3d6beb4e66cc375 [diff] [blame] |
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
diff --git a/lib/Target/Alpha/AsmPrinter/AlphaAsmPrinter.cpp b/lib/Target/Alpha/AsmPrinter/AlphaAsmPrinter.cpp index c2152a4..92b85d3 100644 --- a/lib/Target/Alpha/AsmPrinter/AlphaAsmPrinter.cpp +++ b/lib/Target/Alpha/AsmPrinter/AlphaAsmPrinter.cpp
@@ -175,9 +175,7 @@ II != E; ++II) { // Print the assembly for the instruction. ++EmittedInsts; - if (!printInstruction(II)) { - llvm_unreachable("Unhandled instruction in asm writer!"); - } + printInstruction(II); } }