Add missing break. Patch by Artur Pietrek!

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75628 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Anton Korobeynikov 2009-07-14 09:52:47 +00:00
parent 314fa8e40a
commit e9fd67e2c6

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;