summaryrefslogtreecommitdiff
path: root/lib/CodeGen/AsmPrinter/DIEHash.cpp
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 /lib/CodeGen/AsmPrinter/DIEHash.cpp
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 'lib/CodeGen/AsmPrinter/DIEHash.cpp')
-rw-r--r--lib/CodeGen/AsmPrinter/DIEHash.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/CodeGen/AsmPrinter/DIEHash.cpp b/lib/CodeGen/AsmPrinter/DIEHash.cpp
index c56d2e6473..abc504c058 100644
--- a/lib/CodeGen/AsmPrinter/DIEHash.cpp
+++ b/lib/CodeGen/AsmPrinter/DIEHash.cpp
@@ -383,6 +383,9 @@ void DIEHash::computeHash(DIE *Die) {
E = Die->getChildren().end();
I != E; ++I)
computeHash(*I);
+
+ // Following the last (or if there are no children), append a zero byte.
+ Hash.update((uint8_t)0);
}
/// This is based on the type signature computation given in section 7.27 of the