diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2013-03-07 20:56:18 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2013-03-07 20:56:18 +0000 |
commit | 87d212095feced42295c2a5813f1ce577d01d44f (patch) | |
tree | 6b91e935b5b1148e36a37deb07f1d4b2b21abc5f | |
parent | 4e4cc7dae8d2b2f8a07c38f4d61e0b94b13d008b (diff) |
Fix tautological compare. Not sure why this didn't trigger any test failures.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176652 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | include/llvm/IR/Instructions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/IR/Instructions.h b/include/llvm/IR/Instructions.h index 57b0d89276..7e29699f73 100644 --- a/include/llvm/IR/Instructions.h +++ b/include/llvm/IR/Instructions.h @@ -2758,7 +2758,7 @@ public: return *this; } - if (Index != -1UL) + if (Index != -1U) --SubsetIt; return *this; |