From: Benjamin Kramer Date: Thu, 7 Mar 2013 20:56:18 +0000 (+0000) Subject: Fix tautological compare. Not sure why this didn't trigger any test failures. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=87d212095feced42295c2a5813f1ce577d01d44f;p=oota-llvm.git 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 --- diff --git a/include/llvm/IR/Instructions.h b/include/llvm/IR/Instructions.h index 57b0d89276e..7e29699f73d 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;