summaryrefslogtreecommitdiff
path: root/lib/Target/CppBackend
diff options
context:
space:
mode:
authorBill Wendling <isanbard@gmail.com>2012-02-06 21:16:41 +0000
committerBill Wendling <isanbard@gmail.com>2012-02-06 21:16:41 +0000
commitaa5abe88d6aa445afa593476a665e3ab14b3524c (patch)
treeae087069917a1049f53de52e75aba8397d20a8f2 /lib/Target/CppBackend
parent0f96817d010c4d2abbb0e1c1cfc56ff537010081 (diff)
downloadllvm-aa5abe88d6aa445afa593476a665e3ab14b3524c.tar.gz
llvm-aa5abe88d6aa445afa593476a665e3ab14b3524c.tar.bz2
llvm-aa5abe88d6aa445afa593476a665e3ab14b3524c.tar.xz
[unwind removal] We no longer have 'unwind' instructions being generated, so
remove the code that handles them. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@149901 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/CppBackend')
-rw-r--r--lib/Target/CppBackend/CPPBackend.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/Target/CppBackend/CPPBackend.cpp b/lib/Target/CppBackend/CPPBackend.cpp
index 7c9caf6f03..de8d8b75c4 100644
--- a/lib/Target/CppBackend/CPPBackend.cpp
+++ b/lib/Target/CppBackend/CPPBackend.cpp
@@ -1142,11 +1142,6 @@ void CppWriter::printInstruction(const Instruction *I,
nl(Out);
break;
}
- case Instruction::Unwind: {
- Out << "new UnwindInst("
- << bbname << ");";
- break;
- }
case Instruction::Unreachable: {
Out << "new UnreachableInst("
<< "mod->getContext(), "