summaryrefslogtreecommitdiffstats
path: root/llvm/unittests/ADT/HashingTest.cpp
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2012-03-01 23:20:45 +0000
committerChandler Carruth <chandlerc@gmail.com>2012-03-01 23:20:45 +0000
commit396260c484115755930757f7486cbcfe7cf074db (patch)
tree24c7b01ac22aa3c96f040905a50dbe9c74780e3c /llvm/unittests/ADT/HashingTest.cpp
parent93cffd2fb53752f3083384bfd5e740f97341bd3a (diff)
downloadbcm5719-llvm-396260c484115755930757f7486cbcfe7cf074db.tar.gz
bcm5719-llvm-396260c484115755930757f7486cbcfe7cf074db.zip
Re-disable the debug output. The comment is there explaining why we want
to keep this around -- updating golden tests is annoying otherwise. Thanks to Benjamin for pointing this omission out on IRC. llvm-svn: 151860
Diffstat (limited to 'llvm/unittests/ADT/HashingTest.cpp')
-rw-r--r--llvm/unittests/ADT/HashingTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/unittests/ADT/HashingTest.cpp b/llvm/unittests/ADT/HashingTest.cpp
index 672823f671c..07c0f31f6b3 100644
--- a/llvm/unittests/ADT/HashingTest.cpp
+++ b/llvm/unittests/ADT/HashingTest.cpp
@@ -273,7 +273,7 @@ TEST(HashingTest, HashCombineRangeGoldenTest) {
for (unsigned i = 0; i < sizeof(golden_data)/sizeof(*golden_data); ++i) {
StringRef str = golden_data[i].s;
hash_code hash = hash_combine_range(str.begin(), str.end());
-#if 1 // Enable this to generate paste-able text for the above structure.
+#if 0 // Enable this to generate paste-able text for the above structure.
std::string member_str = "\"" + str.str() + "\",";
fprintf(stderr, " { %-35s 0x%016llxULL },\n",
member_str.c_str(), static_cast<uint64_t>(hash));
OpenPOWER on IntegriCloud