OSDN Git Service

Add missing break. Patch by Artur Pietrek!
authorAnton Korobeynikov <asl@math.spbu.ru>
Tue, 14 Jul 2009 09:52:47 +0000 (09:52 +0000)
committerAnton Korobeynikov <asl@math.spbu.ru>
Tue, 14 Jul 2009 09:52:47 +0000 (09:52 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75628 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/MSIL/MSILWriter.cpp

index 00ac4c9..61ec028 100644 (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;