summaryrefslogtreecommitdiffstats
path: root/debuginfo-tests/aggregate-indirect-arg.cpp
diff options
context:
space:
mode:
authorDevang Patel <dpatel@apple.com>2011-02-09 00:37:52 +0000
committerDevang Patel <dpatel@apple.com>2011-02-09 00:37:52 +0000
commitd3a7ee6bfce5a93a42a55cade887639aee03e623 (patch)
treea99bf847104fa23892b08a1bd7670988e6b9cacb /debuginfo-tests/aggregate-indirect-arg.cpp
parent14524e0f24449e8435e34c125fd0034026f67b86 (diff)
downloadbcm5719-llvm-d3a7ee6bfce5a93a42a55cade887639aee03e623.tar.gz
bcm5719-llvm-d3a7ee6bfce5a93a42a55cade887639aee03e623.zip
Test case for r125142.
llvm-svn: 125144
Diffstat (limited to 'debuginfo-tests/aggregate-indirect-arg.cpp')
-rw-r--r--debuginfo-tests/aggregate-indirect-arg.cpp32
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;
+}
OpenPOWER on IntegriCloud