diff options
author | Jim Laskey <jlaskey@mac.com> | 2006-01-20 21:02:36 +0000 |
---|---|---|
committer | Jim Laskey <jlaskey@mac.com> | 2006-01-20 21:02:36 +0000 |
commit | 4002017e6847a2d8fef7ba2cfe83a8ef2ce6a038 (patch) | |
tree | 0bec88a8925560a9d7d85c5082042e4a6fd35ef7 /include/llvm/CodeGen/DwarfWriter.h | |
parent | b78e8382e8ea512dcbdf70fccf0d7b48bf299bcf (diff) | |
download | external_llvm-4002017e6847a2d8fef7ba2cfe83a8ef2ce6a038.tar.gz external_llvm-4002017e6847a2d8fef7ba2cfe83a8ef2ce6a038.tar.bz2 external_llvm-4002017e6847a2d8fef7ba2cfe83a8ef2ce6a038.zip |
Right size integer values before emitting.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25489 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/DwarfWriter.h')
-rw-r--r-- | include/llvm/CodeGen/DwarfWriter.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/llvm/CodeGen/DwarfWriter.h b/include/llvm/CodeGen/DwarfWriter.h index 8c0bcb9ec5..36225e603d 100644 --- a/include/llvm/CodeGen/DwarfWriter.h +++ b/include/llvm/CodeGen/DwarfWriter.h @@ -721,7 +721,8 @@ namespace llvm { /// 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. /// |