summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGenCXX/debug-lambda-this.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2012-09-19 21:47:34 +0000
committerEric Christopher <echristo@apple.com>2012-09-19 21:47:34 +0000
commit7106ec3ecb5214177d282ae8ce33142f725a9d92 (patch)
treedc291cfcf64cc89587a0e0b6a72b2d3b0c0bac4b /clang/test/CodeGenCXX/debug-lambda-this.cpp
parent0f143ae8af79943e466cbac7620f37f6e205e710 (diff)
downloadbcm5719-llvm-7106ec3ecb5214177d282ae8ce33142f725a9d92.tar.gz
bcm5719-llvm-7106ec3ecb5214177d282ae8ce33142f725a9d92.zip
Handle a captured this for the debug information as well.
llvm-svn: 164253
Diffstat (limited to 'clang/test/CodeGenCXX/debug-lambda-this.cpp')
-rw-r--r--clang/test/CodeGenCXX/debug-lambda-this.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/clang/test/CodeGenCXX/debug-lambda-this.cpp b/clang/test/CodeGenCXX/debug-lambda-this.cpp
new file mode 100644
index 00000000000..7c37fbe35c6
--- /dev/null
+++ b/clang/test/CodeGenCXX/debug-lambda-this.cpp
@@ -0,0 +1,15 @@
+// RUN: %clang_cc1 -triple x86_64-apple-darwin10.0.0 -emit-llvm -o - %s -fexceptions -std=c++11 -g | FileCheck %s
+
+struct D {
+ D();
+ D(const D&);
+ int x;
+ int d(int x);
+};
+int D::d(int x) {
+ [=] {
+ return this->x;
+ }();
+}
+
+// CHECK: metadata !{i32 {{.*}}, metadata !"this", metadata !6, i32 11, i64 64, i64 64, i64 0, i32 1, metadata !37} ; [ DW_TAG_member ] [this] [line 11, size 64, align 64, offset 0] [private] [from ]
OpenPOWER on IntegriCloud