diff options
Diffstat (limited to 'lib/Target/CppBackend/CPPBackend.cpp')
-rw-r--r-- | lib/Target/CppBackend/CPPBackend.cpp | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/Target/CppBackend/CPPBackend.cpp b/lib/Target/CppBackend/CPPBackend.cpp index 09f7ed51a3..7f5f5e189e 100644 --- a/lib/Target/CppBackend/CPPBackend.cpp +++ b/lib/Target/CppBackend/CPPBackend.cpp @@ -1064,11 +1064,6 @@ void CppWriter::printInstruction(const Instruction *I, } break; } - case Instruction::Resume: { - Out << "ResumeInst::Create(mod->getContext(), " << opNames[0] - << ", " << bbname << ");"; - break; - } case Instruction::Invoke: { const InvokeInst* inv = cast<InvokeInst>(I); Out << "std::vector<Value*> " << iName << "_params;"; @@ -1428,9 +1423,6 @@ void CppWriter::printInstruction(const Instruction *I, Out << "\", " << bbname << ");"; break; } - case Instruction::LandingPad: { - break; - } } DefinedValues.insert(I); nl(Out); |