diff options
author | Eric Christopher <echristo@gmail.com> | 2013-01-04 21:51:53 +0000 |
---|---|---|
committer | Eric Christopher <echristo@gmail.com> | 2013-01-04 21:51:53 +0000 |
commit | cad9b53c02fc7f4990afd64c59b2b4e44108fe11 (patch) | |
tree | fd012e51fcf0570e0ead3d18be14f8bd8cf03826 /llvm/test/DebugInfo/X86/nondefault-subrange-array.ll | |
parent | 1e00ac6256e017af4a83f8fbc6ba8614114dde6d (diff) | |
download | bcm5719-llvm-cad9b53c02fc7f4990afd64c59b2b4e44108fe11.tar.gz bcm5719-llvm-cad9b53c02fc7f4990afd64c59b2b4e44108fe11.zip |
Add a name for the anonymous type we're creating for subrange
types and a FIXME for what we should be doing. Should solve the
immediacy of PR12069 where our debug info is crashing another
tool.
llvm-svn: 171536
Diffstat (limited to 'llvm/test/DebugInfo/X86/nondefault-subrange-array.ll')
-rw-r--r-- | llvm/test/DebugInfo/X86/nondefault-subrange-array.ll | 31 |
1 files changed, 16 insertions, 15 deletions
diff --git a/llvm/test/DebugInfo/X86/nondefault-subrange-array.ll b/llvm/test/DebugInfo/X86/nondefault-subrange-array.ll index 5845f3e0b8a..6247cc3c81d 100644 --- a/llvm/test/DebugInfo/X86/nondefault-subrange-array.ll +++ b/llvm/test/DebugInfo/X86/nondefault-subrange-array.ll @@ -8,21 +8,22 @@ ; Check that we can handle non-default array bounds. In this case, the array ; goes from [-3, 38]. -; CHECK: 0x0000002d: DW_TAG_base_type [3] -; CHECK-NEXT: 0x0000002e: DW_AT_byte_size [DW_FORM_data1] (0x04) -; CHECK-NEXT: 0x0000002f: DW_AT_encoding [DW_FORM_data1] (0x05) - -; CHECK: 0x00000030: DW_TAG_array_type [4] * -; CHECK-NEXT: 0x00000031: DW_AT_type [DW_FORM_ref4] (cu + 0x0026 => {0x00000026}) - -; CHECK: 0x00000035: DW_TAG_subrange_type [5] -; CHECK-NEXT: 0x00000036: DW_AT_type [DW_FORM_ref4] (cu + 0x002d => {0x0000002d}) -; CHECK-NEXT: 0x0000003a: DW_AT_lower_bound [DW_FORM_data8] (0xfffffffffffffffd) -; CHECK-NEXT: 0x00000042: DW_AT_upper_bound [DW_FORM_data1] (0x26) - -; CHECK: 0x00000051: DW_TAG_member [8] -; CHECK-NEXT: 0x00000052: DW_AT_name [DW_FORM_strp] ( .debug_str[0x0000003f] = "x") -; CHECK-NEXT: 0x00000056: DW_AT_type [DW_FORM_ref4] (cu + 0x0030 => {0x00000030}) +; CHECK: 0x0000002d: DW_TAG_base_type [3] +; CHECK-NEXT: 0x0000002e: DW_AT_name [DW_FORM_strp] ( .debug_str[0x00000041] = "int") +; CHECK-NEXT: 0x00000032: DW_AT_byte_size [DW_FORM_data1] (0x04) +; CHECK-NEXT: 0x00000033: DW_AT_encoding [DW_FORM_data1] (0x05) + +; CHECK: 0x00000034: DW_TAG_array_type [4] * +; CHECK-NEXT: 0x00000035: DW_AT_type [DW_FORM_ref4] (cu + 0x0026 => {0x00000026}) + +; CHECK: 0x00000039: DW_TAG_subrange_type [5] +; CHECK-NEXT: 0x0000003a: DW_AT_type [DW_FORM_ref4] (cu + 0x002d => {0x0000002d}) +; CHECK-NEXT: 0x0000003e: DW_AT_lower_bound [DW_FORM_data8] (0xfffffffffffffffd) +; CHECK-NEXT: 0x00000046: DW_AT_upper_bound [DW_FORM_data1] (0x26) + +; CHECK: 0x00000055: DW_TAG_member [8] +; CHECK-NEXT: 0x00000056: DW_AT_name [DW_FORM_strp] ( .debug_str[0x0000003f] = "x") +; CHECK-NEXT: 0x0000005a: DW_AT_type [DW_FORM_ref4] (cu + 0x0034 => {0x00000034}) !llvm.dbg.cu = !{!0} |