From 1c0fecfcc3a3d56bbada9449153bb60e4fef8b4e Mon Sep 17 00:00:00 2001 From: Anton Korobeynikov Date: Tue, 14 Jul 2009 09:52:47 +0000 Subject: [PATCH] Add missing break. Patch by Artur Pietrek! llvm-svn: 75628 --- llvm/lib/Target/MSIL/MSILWriter.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/llvm/lib/Target/MSIL/MSILWriter.cpp b/llvm/lib/Target/MSIL/MSILWriter.cpp index 00ac4c9ab092..61ec02830451 100644 --- a/llvm/lib/Target/MSIL/MSILWriter.cpp +++ b/llvm/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;