From: Lang Hames Date: Sat, 15 Feb 2014 00:45:14 +0000 (+0000) Subject: Remove tautological test line (unsigneds are always >=0). X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=76554f34183b7d1e5d9cedb353a063ede0c9d7e1;p=oota-llvm.git Remove tautological test line (unsigneds are always >=0). git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@201451 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp b/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp index fa79a2e7df9..a56d9c7b9c0 100644 --- a/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp +++ b/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp @@ -322,6 +322,5 @@ TEST_F(MCJITCAPITest, reserve_allocation_space) { EXPECT_LE(MM->UsedDataSizeRO, MM->ReservedDataSizeRO); EXPECT_LE(MM->UsedDataSizeRW, MM->ReservedDataSizeRW); EXPECT_TRUE(MM->UsedCodeSize > 0); - EXPECT_TRUE(MM->UsedDataSizeRO >= 0); EXPECT_TRUE(MM->UsedDataSizeRW > 0); }