From 87d212095feced42295c2a5813f1ce577d01d44f Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Thu, 7 Mar 2013 20:56:18 +0000 Subject: [PATCH] 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 --- include/llvm/IR/Instructions.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.34.1