diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2017-10-18 13:31:28 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2017-10-18 13:31:28 +0000 |
commit | 6f43bd4bde15873fe000e27575a54f5223637cf8 (patch) | |
tree | cdea2c9b17e7a0a44a0c44df12473c16351d0931 /llvm/unittests/ADT/APFloatTest.cpp | |
parent | da8808bf91973db7840badac408f55cc38f267cb (diff) | |
download | bcm5719-llvm-6f43bd4bde15873fe000e27575a54f5223637cf8.tar.gz bcm5719-llvm-6f43bd4bde15873fe000e27575a54f5223637cf8.zip |
Untabify.
llvm-svn: 316079
Diffstat (limited to 'llvm/unittests/ADT/APFloatTest.cpp')
-rw-r--r-- | llvm/unittests/ADT/APFloatTest.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/unittests/ADT/APFloatTest.cpp b/llvm/unittests/ADT/APFloatTest.cpp index 80da7195819..280a0862ccc 100644 --- a/llvm/unittests/ADT/APFloatTest.cpp +++ b/llvm/unittests/ADT/APFloatTest.cpp @@ -1455,10 +1455,10 @@ TEST(APFloatTest, getZero) { const unsigned NumGetZeroTests = 12; for (unsigned i = 0; i < NumGetZeroTests; ++i) { APFloat test = APFloat::getZero(*GetZeroTest[i].semantics, - GetZeroTest[i].sign); + GetZeroTest[i].sign); const char *pattern = GetZeroTest[i].sign? "-0x0p+0" : "0x0p+0"; APFloat expected = APFloat(*GetZeroTest[i].semantics, - pattern); + pattern); EXPECT_TRUE(test.isZero()); EXPECT_TRUE(GetZeroTest[i].sign? test.isNegative() : !test.isNegative()); EXPECT_TRUE(test.bitwiseIsEqual(expected)); |