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 | e9fd67e2c678200f5ea264292828b5938b8ea31d (patch) | |
tree | 66eebc2a46b8ae04473274410826b58caa640847 /lib/Target/MSIL | |
parent | 314fa8e40a439b36eb86984d48579083cc01e90a (diff) | |
download | external_llvm-e9fd67e2c678200f5ea264292828b5938b8ea31d.zip external_llvm-e9fd67e2c678200f5ea264292828b5938b8ea31d.tar.gz external_llvm-e9fd67e2c678200f5ea264292828b5938b8ea31d.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/Target/MSIL')
-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; |