summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorMichael Gottesman <mgottesman@apple.com>2013-06-26 17:59:36 +0000
committerMichael Gottesman <mgottesman@apple.com>2013-06-26 17:59:36 +0000
commita8f936446134c9cdcf06f74b861112a62fe66d71 (patch)
treede90be3f0481aea02f460e42745bfc64d0f718f2 /unittests
parentb5a8a905ae58cb1019080f97130890e554afb852 (diff)
downloadllvm-a8f936446134c9cdcf06f74b861112a62fe66d71.tar.gz
llvm-a8f936446134c9cdcf06f74b861112a62fe66d71.tar.bz2
llvm-a8f936446134c9cdcf06f74b861112a62fe66d71.tar.xz
[APFloat] Removed debugging cruft that snuck in.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@184974 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/ADT/APFloatTest.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/unittests/ADT/APFloatTest.cpp b/unittests/ADT/APFloatTest.cpp
index a17b4d1f7d..03b377f6a4 100644
--- a/unittests/ADT/APFloatTest.cpp
+++ b/unittests/ADT/APFloatTest.cpp
@@ -1778,10 +1778,6 @@ TEST(APFloatTest, add) {
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);