diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-11-13 02:31:47 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-11-13 02:31:47 +0000 |
commit | e7ff4c14b157746b3e0228d2dce9f70712d1c126 (patch) | |
tree | cb2924f6d68ba921a83cd91cde117e605f232cab /include | |
parent | f546ac5f9bdedc7d1ae49238c65a93201d0e4f05 (diff) | |
download | external_llvm-e7ff4c14b157746b3e0228d2dce9f70712d1c126.zip external_llvm-e7ff4c14b157746b3e0228d2dce9f70712d1c126.tar.gz external_llvm-e7ff4c14b157746b3e0228d2dce9f70712d1c126.tar.bz2 |
Use the 'count' attribute instead of the 'upper_bound' attribute.
If we have a type 'int a[1]' and a type 'int b[0]', the generated DWARF is the
same for both of them because we use the 'upper_bound' attribute. Instead use
the 'count' attrbute, which gives the correct number of elements in the array.
<rdar://problem/12566646>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@167806 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, 2 insertions, 1 deletions
diff --git a/include/llvm/DIBuilder.h b/include/llvm/DIBuilder.h index 2f07800..9a34682 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); + DISubrange getOrCreateSubrange(int64_t Lo, int64_t Hi, uint64_t Count); /// 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 dae03ad..d75579d 100644 --- a/include/llvm/DebugInfo.h +++ b/include/llvm/DebugInfo.h @@ -143,6 +143,7 @@ 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. |