diff options
author | Jim Laskey <jlaskey@mac.com> | 2007-02-22 18:22:42 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2007-02-22 18:22:42 +0000 |
commit | 7b1b39d9bc6116e23a13668e0e38105e110fd383 (patch) | |
tree | 0cbca1daf6e373df3a2a30659e04391e613dedd0 /lib/CodeGen/DwarfWriter.cpp | |
parent | 9bb3c93af271449dcbfce9f7fb7442dd11d93813 (diff) |
Missing end of abbreviations.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34500 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/CodeGen/DwarfWriter.cpp')
-rw-r--r-- | lib/CodeGen/DwarfWriter.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/CodeGen/DwarfWriter.cpp b/lib/CodeGen/DwarfWriter.cpp index 17e38e2381..42aa1d2875 100644 --- a/lib/CodeGen/DwarfWriter.cpp +++ b/lib/CodeGen/DwarfWriter.cpp @@ -2104,6 +2104,9 @@ private: Asm->EOL(); } + // Mark end of abbreviations. + DD.getAsm()->EmitULEB128Bytes(0); DD.getAsm()->EOL("EOM(3)"); + EmitLabel("abbrev_end", 0); Asm->EOL(); |