http://llvm.org/bugs/show_bug.cgi?id=14966

Eric Christopher <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |FIXED

--- Comment #1 from Eric Christopher <[email protected]> ---
Appears fixed if you'd like to verify:

Breakpoint 1, main () at z.cpp:11
11      S s = { A_1, 1, {(const void*)10, (const void*)20, (const void*)30} };
(gdb) n
12      f1(s);
(gdb) s
f1 (s=...) at z.cpp:7
7      return f2(s);
(gdb) p s
$1 = {a = A_1, b = 1, c = {0xa, 0x14, 0x1e}}
(gdb) s
f2 (s=...) at zz.cpp:5
5      return s.c[2];
(gdb) s
main () at z.cpp:13
13    }
(gdb) p s
$2 = {a = A_1, b = 1, c = {0xa, 0x14, 0x1e}}
(gdb) s

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to