diff options
author | Eric Christopher <echristo@gmail.com> | 2012-11-13 23:30:43 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2012-11-13 23:30:43 +0000 |
commit | 242343d1ab0d6b10221569fd2c504842a561f0e7 (patch) | |
tree | 462a3957cd1229dc227a3b1ee753bb3ab9c5e564 /include | |
parent | b9a350e2981cd8129681a3079c432f77185e8480 (diff) | |
download | external_llvm-242343d1ab0d6b10221569fd2c504842a561f0e7.zip external_llvm-242343d1ab0d6b10221569fd2c504842a561f0e7.tar.gz external_llvm-242343d1ab0d6b10221569fd2c504842a561f0e7.tar.bz2 |
Revert "Use the 'count' attribute instead of the 'upper_bound' attribute."
temporarily as it is breaking the gdb bots.
This reverts commit r167806/e7ff4c14b157746b3e0228d2dce9f70712d1c126.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167886 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r-- | include/llvm/DIBuilder.h | 2 | ||||
-rw-r--r-- | include/llvm/DebugInfo.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/include/llvm/DIBuilder.h b/include/llvm/DIBuilder.h index 9a34682..2f07800 100644 --- a/include/llvm/DIBuilder.h +++ b/include/llvm/DIBuilder.h @@ -371,7 +371,7 @@ namespace llvm { /// getOrCreateSubrange - Create a descriptor for a value range. This /// implicitly uniques the values returned. - DISubrange getOrCreateSubrange(int64_t Lo, int64_t Hi, uint64_t Count); + DISubrange getOrCreateSubrange(int64_t Lo, int64_t Hi); /// createGlobalVariable - Create a new descriptor for the specified global. /// @param Name Name of the variable. diff --git a/include/llvm/DebugInfo.h b/include/llvm/DebugInfo.h index d75579d..dae03ad 100644 --- a/include/llvm/DebugInfo.h +++ b/include/llvm/DebugInfo.h @@ -143,7 +143,6 @@ namespace llvm { uint64_t getLo() const { return getUInt64Field(1); } uint64_t getHi() const { return getUInt64Field(2); } - uint64_t getCount() const { return getUInt64Field(3); } }; /// DIArray - This descriptor holds an array of descriptors. |