summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Kramer <benny.kra@googlemail.com>2013-03-07 20:56:18 +0000
committerBenjamin Kramer <benny.kra@googlemail.com>2013-03-07 20:56:18 +0000
commit05fea8259e8da582d03a064feea42dead2a6dcfe (patch)
treeba53b4c4fb04c2bfccdf9200402b416bf4fc5695
parent324322b343427816debd7183041267167ae6c6a4 (diff)
downloadbcm5719-llvm-05fea8259e8da582d03a064feea42dead2a6dcfe.tar.gz
bcm5719-llvm-05fea8259e8da582d03a064feea42dead2a6dcfe.zip
Fix tautological compare. Not sure why this didn't trigger any test failures.
llvm-svn: 176652
-rw-r--r--llvm/include/llvm/IR/Instructions.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/include/llvm/IR/Instructions.h b/llvm/include/llvm/IR/Instructions.h
index 57b0d89276e..7e29699f73d 100644
--- a/llvm/include/llvm/IR/Instructions.h
+++ b/llvm/include/llvm/IR/Instructions.h
@@ -2758,7 +2758,7 @@ public:
return *this;
}
- if (Index != -1UL)
+ if (Index != -1U)
--SubsetIt;
return *this;
OpenPOWER on IntegriCloud