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.
     ///



_______________________________________________
llvm-commits mailing list
llvm-commits@cs.uiuc.edu
http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits

Reply via email to