diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-12-03 19:44:25 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-12-03 19:44:25 +0000 |
commit | 9127be8a19471039f1c8e50e92c8ebd0460048e9 (patch) | |
tree | 329a6927cbdf07f6145e4c5e01cafdbeb2d46f41 /include/llvm | |
parent | b0dcf61252e58715a3bea79f4c112572df361c30 (diff) | |
download | external_llvm-9127be8a19471039f1c8e50e92c8ebd0460048e9.zip external_llvm-9127be8a19471039f1c8e50e92c8ebd0460048e9.tar.gz external_llvm-9127be8a19471039f1c8e50e92c8ebd0460048e9.tar.bz2 |
Add 'getInt64Field()' method to get the signed integer instead of unsigned.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169145 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm')
-rw-r--r-- | include/llvm/DebugInfo.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/llvm/DebugInfo.h b/include/llvm/DebugInfo.h index e66ee93..ee0505b 100644 --- a/include/llvm/DebugInfo.h +++ b/include/llvm/DebugInfo.h @@ -71,6 +71,7 @@ namespace llvm { return (unsigned)getUInt64Field(Elt); } uint64_t getUInt64Field(unsigned Elt) const; + int64_t getInt64Field(unsigned Elt) const; DIDescriptor getDescriptorField(unsigned Elt) const; template <typename DescTy> |