diff options
author | Anton Korobeynikov <asl@math.spbu.ru> | 2009-07-14 09:52:47 +0000 |
---|---|---|
committer | Anton Korobeynikov <asl@math.spbu.ru> | 2009-07-14 09:52:47 +0000 |
commit | 7d93f90a16c34b92463661d274d98010c35dbd01 (patch) | |
tree | 66eebc2a46b8ae04473274410826b58caa640847 /lib | |
parent | 7a9aab0269e89faedd9c6ca82f13e54f336d6e4e (diff) | |
download | external_llvm-7d93f90a16c34b92463661d274d98010c35dbd01.zip external_llvm-7d93f90a16c34b92463661d274d98010c35dbd01.tar.gz external_llvm-7d93f90a16c34b92463661d274d98010c35dbd01.tar.bz2 |
Add missing break. Patch by Artur Pietrek!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@75628 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/MSIL/MSILWriter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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 @@ 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; |