From: Anton Korobeynikov Date: Tue, 14 Jul 2009 09:52:47 +0000 (+0000) Subject: Add missing break. Patch by Artur Pietrek! X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=e9fd67e2c678200f5ea264292828b5938b8ea31d;p=oota-llvm.git Add missing break. Patch by Artur Pietrek! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75628 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/MSIL/MSILWriter.cpp b/lib/Target/MSIL/MSILWriter.cpp index 00ac4c9ab09..61ec0283045 100644 --- a/lib/Target/MSIL/MSILWriter.cpp +++ b/lib/Target/MSIL/MSILWriter.cpp @@ -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;