diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2019-04-11 21:10:19 +0000 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-04-11 21:10:19 +0000 |
commit | db615bb313bf639693fac295843f06739bca459c (patch) | |
tree | 9a03f0aa1c2f0e866098b337101ccf75ac433426 /llvm/unittests/IR/ConstantRangeTest.cpp | |
parent | d8ada681df242e8beeca0df5f0b4b699d7d34a13 (diff) | |
download | llvm-db615bb313bf639693fac295843f06739bca459c.zip llvm-db615bb313bf639693fac295843f06739bca459c.tar.gz llvm-db615bb313bf639693fac295843f06739bca459c.tar.bz2 |
[ConstantRangeTest] Fix typos in test names; NFC
llvm-svn: 358227
Diffstat (limited to 'llvm/unittests/IR/ConstantRangeTest.cpp')
-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 d0e6cb6..55e71a1 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; |