[llvm-commits] CVS: llvm/lib/CodeGen/DwarfWriter.cpp
Jim Laskey
jlaskey at apple.com
Thu Feb 22 10:22:59 PST 2007
Changes in directory llvm/lib/CodeGen:
DwarfWriter.cpp updated: 1.126 -> 1.127
---
Log message:
Missing end of abbreviations.
---
Diffs of the changes: (+3 -0)
DwarfWriter.cpp | 3 +++
1 files changed, 3 insertions(+)
Index: llvm/lib/CodeGen/DwarfWriter.cpp
diff -u llvm/lib/CodeGen/DwarfWriter.cpp:1.126 llvm/lib/CodeGen/DwarfWriter.cpp:1.127
--- llvm/lib/CodeGen/DwarfWriter.cpp:1.126 Wed Feb 21 16:48:45 2007
+++ llvm/lib/CodeGen/DwarfWriter.cpp Thu Feb 22 12:22:42 2007
@@ -2104,6 +2104,9 @@
Asm->EOL();
}
+ // Mark end of abbreviations.
+ DD.getAsm()->EmitULEB128Bytes(0); DD.getAsm()->EOL("EOM(3)");
+
EmitLabel("abbrev_end", 0);
Asm->EOL();
More information about the llvm-commits
mailing list