Add missing break. Patch by Artur Pietrek!

llvm-svn: 75628
This commit is contained in:
Anton Korobeynikov 2009-07-14 09:52:47 +00:00
parent c0f30f5384
commit 80da762d21

View File

@ -896,6 +896,7 @@ void MSILWriter::printICmpInstruction(unsigned Predicate, const Value* Left,
break;
case ICmpInst::ICMP_UGT:
printBinaryInstruction("cgt.un",Left,Right);
break;
case ICmpInst::ICMP_SGT:
printBinaryInstruction("cgt",Left,Right);
break;