diff options
author | Eric Christopher <echristo@apple.com> | 2012-08-23 22:52:55 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2012-08-23 22:52:55 +0000 |
commit | cbbd5b1d86e0d06c804f4cdd61e0676b2d2f5c85 (patch) | |
tree | 5be67dacf95f7a160172e806d09a08a13299ab52 /test/DebugInfo/X86/concrete_out_of_line.ll | |
parent | 20f47ab7688ba1e5e4c6af4be47c2f07ee4e9ab6 (diff) |
Remove the DW_AT_MIPS_linkage name attribute when we don't need it
output (we're emitting a specification already and the information
isn't changing) and we're not in old gdb compat mode.
Saves 1% on the debug information for a build of llvm.
Fixes rdar://11043421
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162493 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/DebugInfo/X86/concrete_out_of_line.ll')
-rw-r--r-- | test/DebugInfo/X86/concrete_out_of_line.ll | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/test/DebugInfo/X86/concrete_out_of_line.ll b/test/DebugInfo/X86/concrete_out_of_line.ll index a22707189b..0f02271f97 100644 --- a/test/DebugInfo/X86/concrete_out_of_line.ll +++ b/test/DebugInfo/X86/concrete_out_of_line.ll @@ -7,16 +7,15 @@ ; first check that we have a TAG_subprogram at a given offset and it has ; AT_inline. -; CHECK: 0x00000134: DW_TAG_subprogram [18] -; CHECK-NEXT: DW_AT_MIPS_linkage_name +; CHECK: 0x00000130: DW_TAG_subprogram [18] ; CHECK-NEXT: DW_AT_specification ; CHECK-NEXT: DW_AT_inline ; and then that a TAG_subprogram refers to it with AT_abstract_origin. -; CHECK: 0x00000184: DW_TAG_subprogram [20] -; CHECK-NEXT: DW_AT_abstract_origin [DW_FORM_ref4] (cu + 0x0134 => {0x00000134}) +; CHECK: 0x00000174: DW_TAG_subprogram [20] +; CHECK-NEXT: DW_AT_abstract_origin [DW_FORM_ref4] (cu + 0x0130 => {0x00000130}) define i32 @_ZN17nsAutoRefCnt7ReleaseEv() { entry: |