diff options
Diffstat (limited to 'llvm/unittests/IR')
| -rw-r--r-- | llvm/unittests/IR/ConstantRangeTest.cpp | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/llvm/unittests/IR/ConstantRangeTest.cpp b/llvm/unittests/IR/ConstantRangeTest.cpp index d0e6cb6d60d..55e71a1f29b 100644 --- a/llvm/unittests/IR/ConstantRangeTest.cpp +++ b/llvm/unittests/IR/ConstantRangeTest.cpp @@ -1554,7 +1554,7 @@ static void TestOverflowExhaustive(Fn1 OverflowFn, Fn2 MayOverflowFn) {        });  } -TEST_F(ConstantRangeTest, UnsignedAddOverflowExhautive) { +TEST_F(ConstantRangeTest, UnsignedAddOverflowExhaustive) {    TestOverflowExhaustive(        [](const APInt &N1, const APInt &N2) {          bool Overflow; @@ -1566,7 +1566,7 @@ TEST_F(ConstantRangeTest, UnsignedAddOverflowExhautive) {        });  } -TEST_F(ConstantRangeTest, UnsignedSubOverflowExhautive) { +TEST_F(ConstantRangeTest, UnsignedSubOverflowExhaustive) {    TestOverflowExhaustive(        [](const APInt &N1, const APInt &N2) {          bool Overflow; @@ -1578,7 +1578,7 @@ TEST_F(ConstantRangeTest, UnsignedSubOverflowExhautive) {        });  } -TEST_F(ConstantRangeTest, SignedAddOverflowExhautive) { +TEST_F(ConstantRangeTest, SignedAddOverflowExhaustive) {    TestOverflowExhaustive(        [](const APInt &N1, const APInt &N2) {          bool Overflow; @@ -1590,7 +1590,7 @@ TEST_F(ConstantRangeTest, SignedAddOverflowExhautive) {        });  } -TEST_F(ConstantRangeTest, SignedSubOverflowExhautive) { +TEST_F(ConstantRangeTest, SignedSubOverflowExhaustive) {    TestOverflowExhaustive(        [](const APInt &N1, const APInt &N2) {          bool Overflow; | 

