diff options
author | Eric Christopher <echristo@gmail.com> | 2013-01-08 01:53:52 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-01-08 01:53:52 +0000 |
commit | 72a529566ce526f790f1f546bcafff298b9f540e (patch) | |
tree | f36a31023b36d775969827046fb8ed12f7ba11ff /llvm/docs/SourceLevelDebugging.rst | |
parent | 9bd3609a0849be7b7bfa6717142fc113c778162c (diff) | |
download | bcm5719-llvm-72a529566ce526f790f1f546bcafff298b9f540e.tar.gz bcm5719-llvm-72a529566ce526f790f1f546bcafff298b9f540e.zip |
Remove the llvm-local DW_TAG_vector_type tag and add a test to
make sure that vector types do work.
llvm-svn: 171833
Diffstat (limited to 'llvm/docs/SourceLevelDebugging.rst')
-rw-r--r-- | llvm/docs/SourceLevelDebugging.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/llvm/docs/SourceLevelDebugging.rst b/llvm/docs/SourceLevelDebugging.rst index 933534fb499..781824c01f0 100644 --- a/llvm/docs/SourceLevelDebugging.rst +++ b/llvm/docs/SourceLevelDebugging.rst @@ -484,14 +484,13 @@ are possible tag values: DW_TAG_enumeration_type = 4 DW_TAG_structure_type = 19 DW_TAG_union_type = 23 - DW_TAG_vector_type = 259 DW_TAG_subroutine_type = 21 DW_TAG_inheritance = 28 The vector flag indicates that an array type is a native packed vector. -The members of array types (tag = ``DW_TAG_array_type``) or vector types (tag = -``DW_TAG_vector_type``) are :ref:`subrange descriptors <format_subrange>`, each +The members of array types (tag = ``DW_TAG_array_type``) are +:ref:`subrange descriptors <format_subrange>`, each representing the range of subscripts at that level of indexing. The members of enumeration types (tag = ``DW_TAG_enumeration_type``) are |