diff options
| author | David Blaikie <dblaikie@gmail.com> | 2013-02-02 05:56:24 +0000 |
|---|---|---|
| committer | David Blaikie <dblaikie@gmail.com> | 2013-02-02 05:56:24 +0000 |
| commit | 33111dfea04e63a8d21f03cd3e55fe40b1cc1b6e (patch) | |
| tree | 7297a137e10a5faf8997d1ccb86a7c4bc187c930 /llvm/test/DebugInfo/X86/block-capture.ll | |
| parent | e0c260f137eae9c3584cf56f00547f8ccfbf1b30 (diff) | |
| download | bcm5719-llvm-33111dfea04e63a8d21f03cd3e55fe40b1cc1b6e.tar.gz bcm5719-llvm-33111dfea04e63a8d21f03cd3e55fe40b1cc1b6e.zip | |
Remove the (apparently) unnecessary debug info metadata indirection.
The main lists of debug info metadata attached to the compile_unit had an extra
layer of metadata nodes they went through for no apparent reason. This patch
removes that (& still passes just as much of the GDB 7.5 test suite). If anyone
can show evidence as to why these extra metadata nodes are there I'm open to
reverting this patch & documenting why they're there.
llvm-svn: 174266
Diffstat (limited to 'llvm/test/DebugInfo/X86/block-capture.ll')
| -rw-r--r-- | llvm/test/DebugInfo/X86/block-capture.ll | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/llvm/test/DebugInfo/X86/block-capture.ll b/llvm/test/DebugInfo/X86/block-capture.ll index b25223f274c..a1ff6ace8d3 100644 --- a/llvm/test/DebugInfo/X86/block-capture.ll +++ b/llvm/test/DebugInfo/X86/block-capture.ll @@ -63,10 +63,8 @@ declare i32 @__objc_personality_v0(...) !llvm.module.flags = !{!35, !36, !37, !38} !0 = metadata !{i32 786449, i32 0, i32 16, metadata !"foo.m", metadata !"/Users/echristo", metadata !"clang version 3.1 (trunk 151227)", i1 true, i1 false, metadata !"", i32 2, metadata !1, metadata !1, metadata !3, metadata !1} ; [ DW_TAG_compile_unit ] -!1 = metadata !{metadata !2} -!2 = metadata !{i32 0} -!3 = metadata !{metadata !4} -!4 = metadata !{metadata !5, metadata !28, metadata !31, metadata !34} +!1 = metadata !{i32 0} +!3 = metadata !{metadata !5, metadata !28, metadata !31, metadata !34} !5 = metadata !{i32 786478, i32 0, metadata !6, metadata !"foo", metadata !"foo", metadata !"", metadata !6, i32 5, metadata !7, i1 false, i1 true, i32 0, i32 0, null, i32 256, i1 false, null, null, null, metadata !26} ; [ DW_TAG_subprogram ] !6 = metadata !{i32 786473, metadata !"foo.m", metadata !"/Users/echristo", null} ; [ DW_TAG_file_type ] !7 = metadata !{i32 786453, i32 0, metadata !"", i32 0, i32 0, i64 0, i64 0, i64 0, i32 0, null, metadata !8, i32 0, i32 0} ; [ DW_TAG_subroutine_type ] |

