aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/CodeGen/DwarfWriter.h
diff options
context:
space:
mode:
authorJim Laskey <jlaskey@mac.com>2006-01-20 21:02:36 +0000
committerJim Laskey <jlaskey@mac.com>2006-01-20 21:02:36 +0000
commit4002017e6847a2d8fef7ba2cfe83a8ef2ce6a038 (patch)
tree0bec88a8925560a9d7d85c5082042e4a6fd35ef7 /include/llvm/CodeGen/DwarfWriter.h
parentb78e8382e8ea512dcbdf70fccf0d7b48bf299bcf (diff)
downloadexternal_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.h3
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.
///