From 3481657da663423d610ef3ac7ad3f0680ef7c72d Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Fri, 16 Feb 2007 06:34:39 +0000 Subject: [PATCH] Add missing break statements! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34341 91177308-0d34-0410-b5e6-96231b3b80d8 --- tools/llvm2cpp/CppWriter.cpp | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/tools/llvm2cpp/CppWriter.cpp b/tools/llvm2cpp/CppWriter.cpp index 9dffb638945..483016ebf69 100644 --- a/tools/llvm2cpp/CppWriter.cpp +++ b/tools/llvm2cpp/CppWriter.cpp @@ -1245,18 +1245,18 @@ CppWriter::printInstruction(const Instruction *I, const std::string& bbname) { const CastInst* cst = cast(I); Out << "CastInst* " << iName << " = new "; switch (I->getOpcode()) { - case Instruction::Trunc: Out << "TruncInst"; - case Instruction::ZExt: Out << "ZExtInst"; - case Instruction::SExt: Out << "SExtInst"; - case Instruction::FPTrunc: Out << "FPTruncInst"; - case Instruction::FPExt: Out << "FPExtInst"; - case Instruction::FPToUI: Out << "FPToUIInst"; - case Instruction::FPToSI: Out << "FPToSIInst"; - case Instruction::UIToFP: Out << "UIToFPInst"; - case Instruction::SIToFP: Out << "SIToFPInst"; - case Instruction::PtrToInt: Out << "PtrToInst"; - case Instruction::IntToPtr: Out << "IntToPtrInst"; - case Instruction::BitCast: Out << "BitCastInst"; + case Instruction::Trunc: Out << "TruncInst"; break; + case Instruction::ZExt: Out << "ZExtInst"; break; + case Instruction::SExt: Out << "SExtInst"; break; + case Instruction::FPTrunc: Out << "FPTruncInst"; break; + case Instruction::FPExt: Out << "FPExtInst"; break; + case Instruction::FPToUI: Out << "FPToUIInst"; break; + case Instruction::FPToSI: Out << "FPToSIInst"; break; + case Instruction::UIToFP: Out << "UIToFPInst"; break; + case Instruction::SIToFP: Out << "SIToFPInst"; break; + case Instruction::PtrToInt: Out << "PtrToInst"; break; + case Instruction::IntToPtr: Out << "IntToPtrInst"; break; + case Instruction::BitCast: Out << "BitCastInst"; break; default: assert(!"Unreachable"); break; } Out << "(" << opNames[0] << ", "