diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2015-03-09 22:08:37 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2015-03-09 22:08:37 +0000 |
commit | 9e065f52fcf0c77f7375f7f354069684de56e6d4 (patch) | |
tree | 5f3602f2d4eb1735619922a19293d112f6057c87 /test | |
parent | e8cbce94fde2897cef3420060c0238c733ce8b97 (diff) |
Use a MapVector instead of an extra sort.
This also has the advantage of not depending on the brittle getLabelBeginName.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@231714 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test')
-rw-r--r-- | test/DebugInfo/X86/dwarf-aranges.ll | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/test/DebugInfo/X86/dwarf-aranges.ll b/test/DebugInfo/X86/dwarf-aranges.ll index b7e99302cd4..57207c4717e 100644 --- a/test/DebugInfo/X86/dwarf-aranges.ll +++ b/test/DebugInfo/X86/dwarf-aranges.ll @@ -9,21 +9,21 @@ ; -- alignment -- ; CHECK-NEXT: .zero 4,255 +; <data section> - it should have made one span covering all vars in this CU. +; CHECK-NEXT: .quad some_data +; CHECK-NEXT: .quad .Ldebug_end0-some_data + +; <other sections> - it should have made one span covering all vars in this CU. +; CHECK-NEXT: .quad some_other +; CHECK-NEXT: .quad .Ldebug_end1-some_other + ; <common symbols> - it should have made one span for each symbol. ; CHECK-NEXT: .quad some_bss ; CHECK-NEXT: .quad 4 -; <data section> - it should have made one span covering all vars in this CU. -; CHECK-NEXT: .quad some_data -; CHECK-NEXT: .quad .Ldebug_end1-some_data - ; <text section> - it should have made one span covering all functions in this CU. ; CHECK-NEXT: .quad .Lfunc_begin0 -; CHECK-NEXT: .quad .Ldebug_end2-.Lfunc_begin0 - -; <other sections> - it should have made one span covering all vars in this CU. -; CHECK-NEXT: .quad some_other -; CHECK-NEXT: .quad .Ldebug_end3-some_other +; CHECK-NEXT: .quad .Ldebug_end3-.Lfunc_begin0 ; -- finish -- ; CHECK-NEXT: # ARange terminator |