<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Feb 11, 2015 at 8:12 AM, Adrian Prantl <span dir="ltr"><<a href="mailto:aprantl@apple.com" target="_blank">aprantl@apple.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><br><div><div><div class="h5"><blockquote type="cite"><div>On Feb 10, 2015, at 9:40 PM, David Blaikie <<a href="mailto:dblaikie@gmail.com" target="_blank">dblaikie@gmail.com</a>> wrote:</div><br><div><div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Tue, Feb 10, 2015 at 3:32 PM, Adrian Prantl <span dir="ltr"><<a href="mailto:aprantl@apple.com" target="_blank">aprantl@apple.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">Author: adrian<br>
Date: Tue Feb 10 17:32:56 2015<br>
New Revision: 228766<br>
<br>
URL: <a href="http://llvm.org/viewvc/llvm-project?rev=228766&view=rev" target="_blank">http://llvm.org/viewvc/llvm-project?rev=228766&view=rev</a><br>
Log:<br>
Add the missing testcase for r228764.<br>
<br>
Added:<br>
    llvm/trunk/test/DebugInfo/AArch64/frameindices.ll<br>
<br>
Added: llvm/trunk/test/DebugInfo/AArch64/frameindices.ll<br>
URL: <a href="http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/AArch64/frameindices.ll?rev=228766&view=auto" target="_blank">http://llvm.org/viewvc/llvm-project/llvm/trunk/test/DebugInfo/AArch64/frameindices.ll?rev=228766&view=auto</a><br>
==============================================================================<br>
--- llvm/trunk/test/DebugInfo/AArch64/frameindices.ll (added)<br>
+++ llvm/trunk/test/DebugInfo/AArch64/frameindices.ll Tue Feb 10 17:32:56 2015<br>
@@ -0,0 +1,257 @@<br>
+; RUN: llc -O0 -filetype=obj < %s | llvm-dwarfdump - | FileCheck %s<br>
+; Test that a variable with multiple entries in the MMI table makes it into the<br>
+; debug info.<br>
+;<br>
+; CHECK: DW_TAG_inlined_subroutine<br>
+; CHECK:    "_Z3f111A"<br>
+; CHECK: DW_TAG_formal_parameter<br>
+; CHECK: DW_AT_location [DW_FORM_block1]    (<0x0b> 91 51 9d 78 08 91 4a 9d 38 88 01 )<br>
+;  -- fbreg -47, bit-piece 120 8 , fbreg -54, bit-piece 56 136 ------^<br>
+; CHECK: DW_AT_abstract_origin {{.*}} "p1"<br>
+;<br>
+; long a;<br>
+; struct A {<br>
+;   bool x4;<br>
+;   void *x5;<br>
+;   bool x6;<br>
+; };<br>
+; int *b;<br>
+; struct B {<br>
+;   B(long);<br>
+;   ~B();<br>
+; };<br>
+; void f9(A);<br>
+; void f13(A p1) {<br>
+;   b = (int *)__builtin_operator_new(a);<br>
+;   f9(p1);<br>
+; }<br>
+; void f11(A p1) { f13(p1); }<br>
+; void f16() {<br>
+;   A c;<br>
+;   B d(a);<br>
+;   c.x6 = c.x4 = true;<br>
+;   f11(c);<br>
+; }<br></blockquote><div><br>Here's something marginally simpler that still seems to reproduce the crash, in case you're interested in using it insntead:<br></div></div></div></div></div></blockquote><div><br></div></div></div>Thanks! I always enjoy a good round of testcase golfing! :-)</div><div><br></div><div>cheers,</div><div>adrian<div><div class="h5"><br><blockquote type="cite"><div><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div><br><p>struct A {<br>  int x4;<br>  void *x5;<br>  bool x6;<br>};<br>struct B {<br>  ~B();<br>};<br>void fn1(A);<br>void fn2();<br>void fn3(A p1) {<br>  fn2();<br>  fn1(p1);<br>}<br>void fn4() {<br>  A c;<br>  B b;<br>  c.x6 = c.x4 = 0;<br>  fn3(c);<br>}</p><p>I couldn't quite figure out why 'B' needs to be there, any attempt to write something like a dtor but not an actual dtor caused the crash to go away - maybe it's something to do with making fn3 (& thus fn2) an invoke instead of just a call... hmm, yeah, seems to be related (adding noexcept(true) to fn2 also causes the crash to go away). Huh. Not that this is a problem necessarily, but it does make me a bit curious about teh particular mechanism of action... nothing in the bug description/fix seemed to indicate anything about invoke being  pertinent?</p></div></div></div></div></div></blockquote></div></div></div></div></blockquote><div><br>Any thoughts on this ^?<br> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word"><div><div><div class="h5"><blockquote type="cite"><div><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div> </div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
+; ModuleID = 'test.cpp'<br>
+target datalayout = "e-m:o-i64:64-i128:128-n32:64-S128"<br>
+target triple = "aarch64-apple-ios"<br>
+<br>
+%struct.A = type { i8, i8*, i8 }<br>
+%struct.B = type { i8 }<br>
+<br>
+@a = global i64 0, align 8<br>
+@b = global i32* null, align 8<br>
+<br>
+define void @_Z3f131A(%struct.A* nocapture readonly %p1) #0 {<br>
+entry:<br>
+  %agg.tmp = alloca %struct.A, align 8<br>
+  tail call void @llvm.dbg.declare(metadata %struct.A* %p1, metadata !30, metadata !46), !dbg !47<br>
+  %0 = load i64* @a, align 8, !dbg !48, !tbaa !49<br>
+  %call = tail call noalias i8* @_Znwm(i64 %0) #5, !dbg !53<br>
+  store i8* %call, i8** bitcast (i32** @b to i8**), align 8, !dbg !54, !tbaa !55<br>
+  %1 = getelementptr inbounds %struct.A* %agg.tmp, i64 0, i32 0, !dbg !57<br>
+  %2 = getelementptr inbounds %struct.A* %p1, i64 0, i32 0, !dbg !57<br>
+  call void @llvm.memcpy.p0i8.p0i8.i64(i8* %1, i8* %2, i64 24, i32 8, i1 false), !dbg !57, !tbaa.struct !58<br>
+  call void @_Z2f91A(%struct.A* %agg.tmp), !dbg !61<br>
+  ret void, !dbg !62<br>
+}<br>
+<br>
+; Function Attrs: nounwind readnone<br>
+declare void @llvm.dbg.declare(metadata, metadata, metadata) #1<br>
+<br>
+; Function Attrs: nobuiltin<br>
+declare noalias i8* @_Znwm(i64) #2<br>
+<br>
+declare void @_Z2f91A(%struct.A*) #0<br>
+<br>
+; Function Attrs: nounwind<br>
+declare void @llvm.memcpy.p0i8.p0i8.i64(i8* nocapture, i8* nocapture readonly, i64, i32, i1) #3<br>
+<br>
+define void @_Z3f111A(%struct.A* nocapture readonly %p1) #0 {<br>
+entry:<br>
+  %agg.tmp.i = alloca %struct.A, align 8<br>
+  tail call void @llvm.dbg.declare(metadata %struct.A* %p1, metadata !33, metadata !46), !dbg !63<br>
+  %0 = getelementptr inbounds %struct.A* %p1, i64 0, i32 0, !dbg !64<br>
+  %1 = getelementptr inbounds %struct.A* %agg.tmp.i, i64 0, i32 0, !dbg !65<br>
+  call void @llvm.lifetime.start(i64 24, i8* %1), !dbg !65<br>
+  %2 = load i64* @a, align 8, !dbg !67, !tbaa !49<br>
+  %call.i = tail call noalias i8* @_Znwm(i64 %2) #5, !dbg !68<br>
+  store i8* %call.i, i8** bitcast (i32** @b to i8**), align 8, !dbg !69, !tbaa !55<br>
+  call void @llvm.memcpy.p0i8.p0i8.i64(i8* %1, i8* %0, i64 24, i32 8, i1 false), !dbg !70<br>
+  call void @_Z2f91A(%struct.A* %agg.tmp.i), !dbg !71<br>
+  call void @llvm.lifetime.end(i64 24, i8* %1), !dbg !72<br>
+  ret void, !dbg !73<br>
+}<br>
+<br>
+define void @_Z3f16v() #0 {<br>
+entry:<br>
+  %agg.tmp.i.i = alloca %struct.A, align 8<br>
+  %d = alloca %struct.B, align 1<br>
+  %agg.tmp.sroa.2 = alloca [15 x i8], align 1<br>
+  %agg.tmp.sroa.4 = alloca [7 x i8], align 1<br>
+  tail call void @llvm.dbg.declare(metadata [15 x i8]* %agg.tmp.sroa.2, metadata !74, metadata !76), !dbg !77<br>
+  tail call void @llvm.dbg.declare(metadata [7 x i8]* %agg.tmp.sroa.4, metadata !74, metadata !78), !dbg !77<br>
+  tail call void @llvm.dbg.declare(metadata %struct.A* undef, metadata !38, metadata !79), !dbg !80<br>
+  %0 = load i64* @a, align 8, !dbg !81, !tbaa !49<br>
+  tail call void @llvm.dbg.value(metadata %struct.B* %d, i64 0, metadata !39, metadata !79), !dbg !82<br>
+  %call = call %struct.B* @_ZN1BC1El(%struct.B* %d, i64 %0), !dbg !82<br>
+  call void @llvm.dbg.value(metadata i8 1, i64 0, metadata !38, metadata !83), !dbg !80<br>
+  call void @llvm.dbg.value(metadata i8 1, i64 0, metadata !38, metadata !84), !dbg !80<br>
+  call void @llvm.dbg.value(metadata i8 1, i64 0, metadata !74, metadata !83), !dbg !77<br>
+  call void @llvm.dbg.value(metadata i8 1, i64 0, metadata !74, metadata !84), !dbg !77<br>
+  call void @llvm.dbg.declare(metadata %struct.A* undef, metadata !74, metadata !46), !dbg !77<br>
+  %1 = getelementptr inbounds %struct.A* %agg.tmp.i.i, i64 0, i32 0, !dbg !85<br>
+  call void @llvm.lifetime.start(i64 24, i8* %1), !dbg !85<br>
+  %2 = load i64* @a, align 8, !dbg !87, !tbaa !49<br>
+  %call.i.i5 = invoke noalias i8* @_Znwm(i64 %2) #5<br>
+          to label %call.i.i.noexc unwind label %lpad, !dbg !88<br>
+<br>
+call.i.i.noexc:                                   ; preds = %entry<br>
+  %agg.tmp.sroa.4.17..sroa_idx = getelementptr inbounds [7 x i8]* %agg.tmp.sroa.4, i64 0, i64 0, !dbg !89<br>
+  %agg.tmp.sroa.2.1..sroa_idx = getelementptr inbounds [15 x i8]* %agg.tmp.sroa.2, i64 0, i64 0, !dbg !89<br>
+  store i8* %call.i.i5, i8** bitcast (i32** @b to i8**), align 8, !dbg !90, !tbaa !55<br>
+  store i8 1, i8* %1, align 8, !dbg !91<br>
+  %agg.tmp.sroa.2.0..sroa_raw_idx = getelementptr inbounds i8* %1, i64 1, !dbg !91<br>
+  call void @llvm.memcpy.p0i8.p0i8.i64(i8* %agg.tmp.sroa.2.0..sroa_raw_idx, i8* %agg.tmp.sroa.2.1..sroa_idx, i64 15, i32 1, i1 false), !dbg !91<br>
+  %agg.tmp.sroa.3.0..sroa_idx = getelementptr inbounds %struct.A* %agg.tmp.i.i, i64 0, i32 2, !dbg !91<br>
+  store i8 1, i8* %agg.tmp.sroa.3.0..sroa_idx, align 8, !dbg !91<br>
+  %agg.tmp.sroa.4.0..sroa_raw_idx = getelementptr inbounds i8* %1, i64 17, !dbg !91<br>
+  call void @llvm.memcpy.p0i8.p0i8.i64(i8* %agg.tmp.sroa.4.0..sroa_raw_idx, i8* %agg.tmp.sroa.4.17..sroa_idx, i64 7, i32 1, i1 false), !dbg !91<br>
+  invoke void @_Z2f91A(%struct.A* %agg.tmp.i.i)<br>
+          to label %invoke.cont unwind label %lpad, !dbg !92<br>
+<br>
+invoke.cont:                                      ; preds = %call.i.i.noexc<br>
+  call void @llvm.lifetime.end(i64 24, i8* %1), !dbg !93<br>
+  call void @llvm.dbg.value(metadata %struct.B* %d, i64 0, metadata !39, metadata !79), !dbg !82<br>
+  %call1 = call %struct.B* @_ZN1BD1Ev(%struct.B* %d) #3, !dbg !94<br>
+  ret void, !dbg !94<br>
+<br>
+lpad:                                             ; preds = %call.i.i.noexc, %entry<br>
+  %3 = landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*)<br>
+          cleanup, !dbg !94<br>
+  call void @llvm.dbg.value(metadata %struct.B* %d, i64 0, metadata !39, metadata !79), !dbg !82<br>
+  %call2 = call %struct.B* @_ZN1BD1Ev(%struct.B* %d) #3, !dbg !94<br>
+  resume { i8*, i32 } %3, !dbg !94<br>
+}<br>
+<br>
+declare %struct.B* @_ZN1BC1El(%struct.B*, i64)<br>
+<br>
+declare i32 @__gxx_personality_v0(...)<br>
+<br>
+; Function Attrs: nounwind<br>
+declare %struct.B* @_ZN1BD1Ev(%struct.B*) #4<br>
+<br>
+; Function Attrs: nounwind readnone<br>
+declare void @llvm.dbg.value(metadata, i64, metadata, metadata) #1<br>
+<br>
+; Function Attrs: nounwind<br>
+declare void @llvm.lifetime.start(i64, i8* nocapture) #3<br>
+<br>
+; Function Attrs: nounwind<br>
+declare void @llvm.lifetime.end(i64, i8* nocapture) #3<br>
+<br>
+attributes #1 = { nounwind readnone }<br>
+attributes #2 = { nobuiltin }<br>
+attributes #3 = { nounwind }<br>
+attributes #4 = { nounwind  }<br>
+attributes #5 = { builtin }<br>
+<br>
+!<a href="http://llvm.dbg.cu/" target="_blank">llvm.dbg.cu</a> = !{!0}<br>
+!llvm.module.flags = !{!43, !44}<br>
+!llvm.ident = !{!45}<br>
+<br>
+!0 = !{!"0x11\004\00clang version 3.7.0 \001\00\000\00\001", !1, !2, !3, !24, !40, !2} ; [ DW_TAG_compile_unit ] [/<stdin>] [DW_LANG_C_plus_plus]<br>
+!1 = !{!"<stdin>", !""}<br>
+!2 = !{}<br>
+!3 = !{!4, !12, !14}<br>
+!4 = !{!"0x13\00A\002\00192\0064\000\000\000", !5, null, null, !6, null, null, !"_ZTS1A"} ; [ DW_TAG_structure_type ] [A] [line 2, size 192, align 64, offset 0] [def] [from ]<br>
+!5 = !{!"test.cpp", !""}<br>
+!6 = !{!7, !9, !11}<br>
+!7 = !{!"0xd\00x4\003\008\008\000\000", !5, !"_ZTS1A", !8} ; [ DW_TAG_member ] [x4] [line 3, size 8, align 8, offset 0] [from bool]<br>
+!8 = !{!"0x24\00bool\000\008\008\000\000\002", null, null} ; [ DW_TAG_base_type ] [bool] [line 0, size 8, align 8, offset 0, enc DW_ATE_boolean]<br>
+!9 = !{!"0xd\00x5\004\0064\0064\0064\000", !5, !"_ZTS1A", !10} ; [ DW_TAG_member ] [x5] [line 4, size 64, align 64, offset 64] [from ]<br>
+!10 = !{!"0xf\00\000\0064\0064\000\000", null, null, null} ; [ DW_TAG_pointer_type ] [line 0, size 64, align 64, offset 0] [from ]<br>
+!11 = !{!"0xd\00x6\005\008\008\00128\000", !5, !"_ZTS1A", !8} ; [ DW_TAG_member ] [x6] [line 5, size 8, align 8, offset 128] [from bool]<br>
+!12 = !{!"0xf\00\000\0064\0064\000\000", null, null, !13} ; [ DW_TAG_pointer_type ] [line 0, size 64, align 64, offset 0] [from int]<br>
+!13 = !{!"0x24\00int\000\0032\0032\000\000\005", null, null} ; [ DW_TAG_base_type ] [int] [line 0, size 32, align 32, offset 0, enc DW_ATE_signed]<br>
+!14 = !{!"0x13\00B\008\008\008\000\000\000", !5, null, null, !15, null, null, !"_ZTS1B"} ; [ DW_TAG_structure_type ] [B] [line 8, size 8, align 8, offset 0] [def] [from ]<br>
+!15 = !{!16, !21}<br>
+!16 = !{!"0x2e\00B\00B\00\009\000\000\000\000\00256\001\009", !5, !"_ZTS1B", !17, null, null, null, null, null} ; [ DW_TAG_subprogram ] [line 9] [B]<br>
+!17 = !{!"0x15\00\000\000\000\000\000\000", null, null, null, !18, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]<br>
+!18 = !{null, !19, !20}<br>
+!19 = !{!"0xf\00\000\0064\0064\000\001088\00", null, null, !"_ZTS1B"} ; [ DW_TAG_pointer_type ] [line 0, size 64, align 64, offset 0] [artificial] [from _ZTS1B]<br>
+!20 = !{!"0x24\00long int\000\0064\0064\000\000\005", null, null} ; [ DW_TAG_base_type ] [long int] [line 0, size 64, align 64, offset 0, enc DW_ATE_signed]<br>
+!21 = !{!"0x2e\00~B\00~B\00\0010\000\000\000\000\00256\001\0010", !5, !"_ZTS1B", !22, null, null, null, null, null} ; [ DW_TAG_subprogram ] [line 10] [~B]<br>
+!22 = !{!"0x15\00\000\000\000\000\000\000", null, null, null, !23, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]<br>
+!23 = !{null, !19}<br>
+!24 = !{!25, !31, !34}<br>
+!25 = !{!"0x2e\00f13\00f13\00_Z3f131A\0013\000\001\000\000\00256\001\0013", !5, !26, !27, null, void (%struct.A*)* @_Z3f131A, null, null, !29} ; [ DW_TAG_subprogram ] [line 13] [def] [f13]<br>
+!26 = !{!"0x29", !5}                              ; [ DW_TAG_file_type ] [/test.cpp]<br>
+!27 = !{!"0x15\00\000\000\000\000\000\000", null, null, null, !28, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]<br>
+!28 = !{null, !"_ZTS1A"}<br>
+!29 = !{!30}<br>
+!30 = !{!"0x101\00p1\0016777229\000", !25, !26, !"_ZTS1A"} ; [ DW_TAG_arg_variable ] [p1] [line 13]<br>
+!31 = !{!"0x2e\00f11\00f11\00_Z3f111A\0017\000\001\000\000\00256\001\0017", !5, !26, !27, null, void (%struct.A*)* @_Z3f111A, null, null, !32} ; [ DW_TAG_subprogram ] [line 17] [def] [f11]<br>
+!32 = !{!33}<br>
+!33 = !{!"0x101\00p1\0016777233\000", !31, !26, !"_ZTS1A"} ; [ DW_TAG_arg_variable ] [p1] [line 17]<br>
+!34 = !{!"0x2e\00f16\00f16\00_Z3f16v\0018\000\001\000\000\00256\001\0018", !5, !26, !35, null, void ()* @_Z3f16v, null, null, !37} ; [ DW_TAG_subprogram ] [line 18] [def] [f16]<br>
+!35 = !{!"0x15\00\000\000\000\000\000\000", null, null, null, !36, null, null, null} ; [ DW_TAG_subroutine_type ] [line 0, size 0, align 0, offset 0] [from ]<br>
+!36 = !{null}<br>
+!37 = !{!38, !39}<br>
+!38 = !{!"0x100\00c\0019\000", !34, !26, !"_ZTS1A"} ; [ DW_TAG_auto_variable ] [c] [line 19]<br>
+!39 = !{!"0x100\00d\0020\000", !34, !26, !"_ZTS1B"} ; [ DW_TAG_auto_variable ] [d] [line 20]<br>
+!40 = !{!41, !42}<br>
+!41 = !{!"0x34\00a\00a\00\001\000\001", null, !26, !20, i64* @a, null} ; [ DW_TAG_variable ] [a] [line 1] [def]<br>
+!42 = !{!"0x34\00b\00b\00\007\000\001", null, !26, !12, i32** @b, null} ; [ DW_TAG_variable ] [b] [line 7] [def]<br>
+!43 = !{i32 2, !"Dwarf Version", i32 2}<br>
+!44 = !{i32 2, !"Debug Info Version", i32 2}<br>
+!45 = !{!"clang version 3.7.0 "}<br>
+!46 = !{!"0x102\006"}                             ; [ DW_TAG_expression ] [DW_OP_deref]<br>
+!47 = !MDLocation(line: 13, column: 12, scope: !25)<br>
+!48 = !MDLocation(line: 14, column: 37, scope: !25)<br>
+!49 = !{!50, !50, i64 0}<br>
+!50 = !{!"long", !51, i64 0}<br>
+!51 = !{!"omnipotent char", !52, i64 0}<br>
+!52 = !{!"Simple C/C++ TBAA"}<br>
+!53 = !MDLocation(line: 14, column: 14, scope: !25)<br>
+!54 = !MDLocation(line: 14, column: 5, scope: !25)<br>
+!55 = !{!56, !56, i64 0}<br>
+!56 = !{!"any pointer", !51, i64 0}<br>
+!57 = !MDLocation(line: 15, column: 6, scope: !25)<br>
+!58 = !{i64 0, i64 1, !59, i64 8, i64 8, !55, i64 16, i64 1, !59}<br>
+!59 = !{!60, !60, i64 0}<br>
+!60 = !{!"bool", !51, i64 0}<br>
+!61 = !MDLocation(line: 15, column: 3, scope: !25)<br>
+!62 = !MDLocation(line: 16, column: 1, scope: !25)<br>
+!63 = !MDLocation(line: 17, column: 12, scope: !31)<br>
+!64 = !MDLocation(line: 17, column: 22, scope: !31)<br>
+!65 = !MDLocation(line: 13, column: 12, scope: !25, inlinedAt: !66)<br>
+!66 = distinct !MDLocation(line: 17, column: 18, scope: !31)<br>
+!67 = !MDLocation(line: 14, column: 37, scope: !25, inlinedAt: !66)<br>
+!68 = !MDLocation(line: 14, column: 14, scope: !25, inlinedAt: !66)<br>
+!69 = !MDLocation(line: 14, column: 5, scope: !25, inlinedAt: !66)<br>
+!70 = !MDLocation(line: 15, column: 6, scope: !25, inlinedAt: !66)<br>
+!71 = !MDLocation(line: 15, column: 3, scope: !25, inlinedAt: !66)<br>
+!72 = !MDLocation(line: 16, column: 1, scope: !25, inlinedAt: !66)<br>
+!73 = !MDLocation(line: 17, column: 27, scope: !31)<br>
+!74 = !{!"0x101\00p1\0016777233\000", !31, !26, !"_ZTS1A", !75} ; [ DW_TAG_arg_variable ] [p1] [line 17]<br>
+!75 = distinct !MDLocation(line: 22, column: 3, scope: !34)<br>
+!76 = !{!"0x102\00157\008\00120"}                 ; [ DW_TAG_expression ] [DW_OP_bit_piece offset=8, size=120]<br>
+!77 = !MDLocation(line: 17, column: 12, scope: !31, inlinedAt: !75)<br>
+!78 = !{!"0x102\00157\00136\0056"}                ; [ DW_TAG_expression ] [DW_OP_bit_piece offset=136, size=56]<br>
+!79 = !{!"0x102"}                                 ; [ DW_TAG_expression ]<br>
+!80 = !MDLocation(line: 19, column: 5, scope: !34)<br>
+!81 = !MDLocation(line: 20, column: 7, scope: !34)<br>
+!82 = !MDLocation(line: 20, column: 5, scope: !34)<br>
+!83 = !{!"0x102\00157\000\008"}                   ; [ DW_TAG_expression ] [DW_OP_bit_piece offset=0, size=8]<br>
+!84 = !{!"0x102\00157\00128\008"}                 ; [ DW_TAG_expression ] [DW_OP_bit_piece offset=128, size=8]<br>
+!85 = !MDLocation(line: 13, column: 12, scope: !25, inlinedAt: !86)<br>
+!86 = distinct !MDLocation(line: 17, column: 18, scope: !31, inlinedAt: !75)<br>
+!87 = !MDLocation(line: 14, column: 37, scope: !25, inlinedAt: !86)<br>
+!88 = !MDLocation(line: 14, column: 14, scope: !25, inlinedAt: !86)<br>
+!89 = !MDLocation(line: 22, column: 7, scope: !34)<br>
+!90 = !MDLocation(line: 14, column: 5, scope: !25, inlinedAt: !86)<br>
+!91 = !MDLocation(line: 15, column: 6, scope: !25, inlinedAt: !86)<br>
+!92 = !MDLocation(line: 15, column: 3, scope: !25, inlinedAt: !86)<br>
+!93 = !MDLocation(line: 16, column: 1, scope: !25, inlinedAt: !86)<br>
+!94 = !MDLocation(line: 23, column: 1, scope: !34)<br>
<br>
<br>
_______________________________________________<br>
llvm-commits mailing list<br>
<a href="mailto:llvm-commits@cs.uiuc.edu" target="_blank">llvm-commits@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/llvm-commits</a><br>
</blockquote></div><br></div></div>
</div></blockquote></div></div></div><br></div></blockquote></div><br></div></div>