summaryrefslogtreecommitdiff
path: root/unittests
diff options
context:
space:
mode:
authorDavid Blaikie <dblaikie@gmail.com>2013-10-16 20:29:06 +0000
committerDavid Blaikie <dblaikie@gmail.com>2013-10-16 20:29:06 +0000
commit75ee00021d5e753be09baa4121a090afc8d7c236 (patch)
tree8bdb5b02fef567012d98dda285fcd62811c37be5 /unittests
parente6b1095e31677720708181f1bc998924340e5d46 (diff)
downloadllvm-75ee00021d5e753be09baa4121a090afc8d7c236.tar.gz
llvm-75ee00021d5e753be09baa4121a090afc8d7c236.tar.bz2
llvm-75ee00021d5e753be09baa4121a090afc8d7c236.tar.xz
DIEHash: Include the trailing zero byte after the children of a DIE
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@192836 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests')
-rw-r--r--unittests/CodeGen/DIEHashTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/CodeGen/DIEHashTest.cpp b/unittests/CodeGen/DIEHashTest.cpp
index 6b9a4dbc26..86358d5d31 100644
--- a/unittests/CodeGen/DIEHashTest.cpp
+++ b/unittests/CodeGen/DIEHashTest.cpp
@@ -23,6 +23,6 @@ TEST(DIEHashData1Test, DIEHash) {
DIEInteger Size(4);
Die.addValue(dwarf::DW_AT_byte_size, dwarf::DW_FORM_data1, &Size);
uint64_t MD5Res = Hash.computeTypeSignature(&Die);
- ASSERT_EQ(MD5Res, 0x540e9ff30ade3e4aULL);
+ ASSERT_EQ(MD5Res, 0x4F68EF1039F8D2BULL);
}
}