diff options
author | Sanjoy Das <sanjoy@playingwithpointers.com> | 2016-03-03 18:31:33 +0000 |
---|---|---|
committer | Sanjoy Das <sanjoy@playingwithpointers.com> | 2016-03-03 18:31:33 +0000 |
commit | 3928910fe6b120f296854edd4c160d521de5efe2 (patch) | |
tree | 575d8412cdd45b426a63d2feb4036033ca470f10 | |
parent | 724f5cf278779d1ec20237f9978f35d0811a7273 (diff) | |
download | bcm5719-llvm-3928910fe6b120f296854edd4c160d521de5efe2.tar.gz bcm5719-llvm-3928910fe6b120f296854edd4c160d521de5efe2.zip |
[ConstantRange] Rename test; NFC
llvm-svn: 262640
-rw-r--r-- | llvm/unittests/IR/ConstantRangeTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/IR/ConstantRangeTest.cpp b/llvm/unittests/IR/ConstantRangeTest.cpp index a06483dfe49..953e68e0594 100644 --- a/llvm/unittests/IR/ConstantRangeTest.cpp +++ b/llvm/unittests/IR/ConstantRangeTest.cpp @@ -608,7 +608,7 @@ TEST(ConstantRange, MakeSatisfyingICmpRegion) { ConstantRange(APInt(8, 4), APInt(8, -128))); } -TEST(ConstantRange, MakeOverflowingRegion) { +TEST(ConstantRange, MakeGuaranteedNoWrapRegion) { const int IntMin4Bits = 8; const int IntMax4Bits = 7; typedef OverflowingBinaryOperator OBO; |