summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChad Rosier <mcrosier@codeaurora.org>2016-04-25 13:25:14 +0000
committerChad Rosier <mcrosier@codeaurora.org>2016-04-25 13:25:14 +0000
commit3d75f8ce9e1603646da90a340d5d6d9db5d82fb1 (patch)
treefa8d4b2a1794a87eb8c2a0249797e2b39053cc0e
parentfcf32c2f004427cdd33071078dafaab032bcf1d4 (diff)
downloadbcm5719-llvm-3d75f8ce9e1603646da90a340d5d6d9db5d82fb1.tar.gz
bcm5719-llvm-3d75f8ce9e1603646da90a340d5d6d9db5d82fb1.zip
Typo. NFC.
llvm-svn: 267399
-rw-r--r--llvm/lib/IR/Instructions.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/IR/Instructions.cpp b/llvm/lib/IR/Instructions.cpp
index 0ac65f1e371..0d5bd9e9429 100644
--- a/llvm/lib/IR/Instructions.cpp
+++ b/llvm/lib/IR/Instructions.cpp
@@ -3581,7 +3581,7 @@ bool CmpInst::isImpliedTrueByMatchingCmp(Predicate Pred1, Predicate Pred2) {
default:
break;
case ICMP_EQ:
- // A == B implies A >=u B, A <=u B, A >=u B, and A <=u B are true.
+ // A == B implies A >=u B, A <=u B, A >=s B, and A <=s B are true.
return Pred2 == ICMP_UGE || Pred2 == ICMP_ULE || Pred2 == ICMP_SGE ||
Pred2 == ICMP_SLE;
case ICMP_UGT: // A >u B implies A != B and A >=u B are true.
OpenPOWER on IntegriCloud