diff options
Diffstat (limited to 'debuginfo-tests')
-rw-r--r-- | debuginfo-tests/aggregate-indirect-arg.cpp | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/debuginfo-tests/aggregate-indirect-arg.cpp b/debuginfo-tests/aggregate-indirect-arg.cpp new file mode 100644 index 00000000000..a010e35bbc2 --- /dev/null +++ b/debuginfo-tests/aggregate-indirect-arg.cpp @@ -0,0 +1,32 @@ +// RUN: %clangxx -O0 -g %s -c -o %t.o +// RUN: %clangxx %t.o -o %t.out +// RUN: %test_debuginfo %s %t.out +// Radar 8945514 +// DEBUGGER: break 22 +// DEBUGGER: r +// DEBUGGER: p v +// CHECK: $1 = (SVal &) +// CHECK: Data = 0x0, +// CHECK: Kind = 2142 + +class SVal { +public: + ~SVal() {} + const void* Data; + unsigned Kind; +}; + +void bar(SVal &v) {} +class A { +public: + void foo(SVal v) { bar(v); } +}; + +int main() { + SVal v; + v.Data = 0; + v.Kind = 2142; + A a; + a.foo(v); + return 0; +} |