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 | 1c0fecfcc3a3d56bbada9449153bb60e4fef8b4e (patch) | |
tree | fa709c8bb103bec1d12d7ea741d7fbbc6874ba7e /llvm/lib | |
parent | ed28f6e4333f6e9144137761e77d659c13cfc464 (diff) | |
download | bcm5719-llvm-1c0fecfcc3a3d56bbada9449153bb60e4fef8b4e.tar.gz bcm5719-llvm-1c0fecfcc3a3d56bbada9449153bb60e4fef8b4e.zip |
Add missing break. Patch by Artur Pietrek!
llvm-svn: 75628
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/MSIL/MSILWriter.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/llvm/lib/Target/MSIL/MSILWriter.cpp b/llvm/lib/Target/MSIL/MSILWriter.cpp index 00ac4c9ab09..61ec0283045 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; |