summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorMichael Gottesman <mgottesman@apple.com>2013-06-27 00:00:45 +0000
committerMichael Gottesman <mgottesman@apple.com>2013-06-27 00:00:45 +0000
commitbb7759376560710002473e72d71f46f42a263016 (patch)
tree4468f862cd49bacfbde3930fa1c7760ddfe5ee4b /unittests
parent2eda897c3c41d4307ff51e19b7f759a51112c4d5 (diff)
downloadllvm-bb7759376560710002473e72d71f46f42a263016.tar.gz
llvm-bb7759376560710002473e72d71f46f42a263016.tar.bz2
llvm-bb7759376560710002473e72d71f46f42a263016.tar.xz
Removed two logging printf statements from the APFloat tests... = /.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@185045 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/ADT/APFloatTest.cpp8
1 files changed, 0 insertions, 8 deletions
diff --git a/unittests/ADT/APFloatTest.cpp b/unittests/ADT/APFloatTest.cpp
index fc196fff0e..8b96c8b096 100644
--- a/unittests/ADT/APFloatTest.cpp
+++ b/unittests/ADT/APFloatTest.cpp
@@ -2076,10 +2076,6 @@ TEST(APFloatTest, subtract) {
APFloat result(APFloat::IEEEsingle, SpecialCaseTests[i].result);
- printf("%a, %a, %a, %a\n", SpecialCaseTests[i].x.convertToFloat(),
- SpecialCaseTests[i].y.convertToFloat(),
- x.convertToFloat(), result.convertToFloat());
-
EXPECT_TRUE(result.bitwiseIsEqual(x));
EXPECT_TRUE((int)status == SpecialCaseTests[i].status);
EXPECT_TRUE((int)x.getCategory() == SpecialCaseTests[i].category);
@@ -2384,10 +2380,6 @@ TEST(APFloatTest, multiply) {
APFloat result(APFloat::IEEEsingle, SpecialCaseTests[i].result);
- printf("%a, %a, %a, %a\n", SpecialCaseTests[i].x.convertToFloat(),
- SpecialCaseTests[i].y.convertToFloat(),
- x.convertToFloat(), result.convertToFloat());
-
EXPECT_TRUE(result.bitwiseIsEqual(x));
EXPECT_TRUE((int)status == SpecialCaseTests[i].status);
EXPECT_TRUE((int)x.getCategory() == SpecialCaseTests[i].category);