summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorLang Hames <lhames@gmail.com>2014-02-15 00:45:14 +0000
committerLang Hames <lhames@gmail.com>2014-02-15 00:45:14 +0000
commit76554f34183b7d1e5d9cedb353a063ede0c9d7e1 (patch)
tree4a8d56148082458131719970831ae898731a6cf2 /unittests
parenta666f9d3a5bffc8be6a6f0bf87644ef4ff334faf (diff)
downloadllvm-76554f34183b7d1e5d9cedb353a063ede0c9d7e1.tar.gz
llvm-76554f34183b7d1e5d9cedb353a063ede0c9d7e1.tar.bz2
llvm-76554f34183b7d1e5d9cedb353a063ede0c9d7e1.tar.xz
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
Diffstat (limited to 'unittests')
-rw-r--r--unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp b/unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp
index fa79a2e7df..a56d9c7b9c 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);
}