summaryrefslogtreecommitdiff
path: root/lib/Target
diff options
context:
space:
mode:
authorAnton Korobeynikov <asl@math.spbu.ru>2009-07-14 09:52:47 +0000
committerAnton Korobeynikov <asl@math.spbu.ru>2009-07-14 09:52:47 +0000
commite9fd67e2c678200f5ea264292828b5938b8ea31d (patch)
tree66eebc2a46b8ae04473274410826b58caa640847 /lib/Target
parent314fa8e40a439b36eb86984d48579083cc01e90a (diff)
downloadllvm-e9fd67e2c678200f5ea264292828b5938b8ea31d.tar.gz
llvm-e9fd67e2c678200f5ea264292828b5938b8ea31d.tar.bz2
llvm-e9fd67e2c678200f5ea264292828b5938b8ea31d.tar.xz
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')
-rw-r--r--lib/Target/MSIL/MSILWriter.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Target/MSIL/MSILWriter.cpp b/lib/Target/MSIL/MSILWriter.cpp
index 00ac4c9ab0..61ec028304 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;