summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/member-init-ctor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/CodeGenCXX/member-init-ctor.cpp')
-rw-r--r--test/CodeGenCXX/member-init-ctor.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/CodeGenCXX/member-init-ctor.cpp b/test/CodeGenCXX/member-init-ctor.cpp
new file mode 100644
index 0000000..d9a6734
--- /dev/null
+++ b/test/CodeGenCXX/member-init-ctor.cpp
@@ -0,0 +1,14 @@
+// RUN: %clang_cc1 %s -std=c++0x -emit-llvm -o - | FileCheck %s
+
+bool b();
+struct S {
+ int n = b() ? S().n + 1 : 0;
+};
+
+S s;
+
+// CHECK: define{{.*}} void @_ZN1SC2Ev(
+// CHECK-NOT }
+// CHECK: call {{.*}} @_Z1bv()
+// CHECK-NOT }
+// CHECK: call {{.*}} @_ZN1SC1Ev(
OpenPOWER on IntegriCloud