commit | 7d93f90a16c34b92463661d274d98010c35dbd01 | [log] [tgz] |
---|---|---|
author | Anton Korobeynikov <asl@math.spbu.ru> | Tue Jul 14 09:52:47 2009 +0000 |
committer | Anton Korobeynikov <asl@math.spbu.ru> | Tue Jul 14 09:52:47 2009 +0000 |
tree | 66eebc2a46b8ae04473274410826b58caa640847 | |
parent | 7a9aab0269e89faedd9c6ca82f13e54f336d6e4e [diff] [blame] |
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 00ac4c9..61ec028 100644 --- a/lib/Target/MSIL/MSILWriter.cpp +++ b/lib/Target/MSIL/MSILWriter.cpp
@@ -896,6 +896,7 @@ break; case ICmpInst::ICMP_UGT: printBinaryInstruction("cgt.un",Left,Right); + break; case ICmpInst::ICMP_SGT: printBinaryInstruction("cgt",Left,Right); break;