[llvm] r189899 - It's a very large constant. Say so.

Eric Christopher echristo at gmail.com
Tue Sep 3 17:58:11 PDT 2013


Author: echristo
Date: Tue Sep  3 19:58:10 2013
New Revision: 189899

URL: http://llvm.org/viewvc/llvm-project?rev=189899&view=rev
Log:
It's a very large constant. Say so.

Modified:
    llvm/trunk/unittests/CodeGen/DIEHashTest.cpp

Modified: llvm/trunk/unittests/CodeGen/DIEHashTest.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/unittests/CodeGen/DIEHashTest.cpp?rev=189899&r1=189898&r2=189899&view=diff
==============================================================================
--- llvm/trunk/unittests/CodeGen/DIEHashTest.cpp (original)
+++ llvm/trunk/unittests/CodeGen/DIEHashTest.cpp Tue Sep  3 19:58:10 2013
@@ -23,7 +23,7 @@ TEST(DIEHashData1Test, DIEHash) {
   DIEValue *Size = new DIEInteger(4);
   Die->addValue(dwarf::DW_AT_byte_size, dwarf::DW_FORM_data1, Size);
   uint64_t MD5Res = Hash.computeTypeSignature(Die);
-  ASSERT_TRUE(MD5Res == 0x540e9ff30ade3e4a);
+  ASSERT_TRUE(MD5Res == 0x540e9ff30ade3e4aULL);
   delete Die;
 }
 }





More information about the llvm-commits mailing list