[llvm-commits] CVS: llvm/include/llvm/CodeGen/DwarfWriter.h
Jim Laskey
jlaskey at apple.com
Fri Jan 20 13:02:47 PST 2006
Changes in directory llvm/include/llvm/CodeGen:
DwarfWriter.h updated: 1.12 -> 1.13
---
Log message:
Right size integer values before emitting.
---
Diffs of the changes: (+2 -1)
DwarfWriter.h | 3 ++-
1 files changed, 2 insertions(+), 1 deletion(-)
Index: llvm/include/llvm/CodeGen/DwarfWriter.h
diff -u llvm/include/llvm/CodeGen/DwarfWriter.h:1.12 llvm/include/llvm/CodeGen/DwarfWriter.h:1.13
--- llvm/include/llvm/CodeGen/DwarfWriter.h:1.12 Fri Jan 20 14:34:06 2006
+++ llvm/include/llvm/CodeGen/DwarfWriter.h Fri Jan 20 15:02:35 2006
@@ -721,7 +721,8 @@
/// AddInt - Add a simple integer attribute data and value.
///
- void AddInt(unsigned Attribute, unsigned Form, int Integer);
+ void AddInt(unsigned Attribute, unsigned Form,
+ int Integer, bool IsSigned = false);
/// AddString - Add a std::string attribute data and value.
///
More information about the llvm-commits
mailing list