summaryrefslogtreecommitdiffstats
path: root/test/CodeGenCXX/constructors.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2011-11-02 23:04:16 +0000
committerDouglas Gregor <dgregor@apple.com>2011-11-02 23:04:16 +0000
commitddb21473ef1ff20b3abf7ba3cd6cb29acbd5cf06 (patch)
treef2fb24e81bce77ba33239a187e2a060d550b1429 /test/CodeGenCXX/constructors.cpp
parentc637d738897b1745af3bad7fc551f26b98da838c (diff)
Don't build member initializers for zero-length or incomplete arrays,
and don't try to destroy them, either. Fixes <rdar://problem/10228639>. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@143584 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenCXX/constructors.cpp')
-rw-r--r--test/CodeGenCXX/constructors.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/CodeGenCXX/constructors.cpp b/test/CodeGenCXX/constructors.cpp
index ec7f06c868..9e2da31f04 100644
--- a/test/CodeGenCXX/constructors.cpp
+++ b/test/CodeGenCXX/constructors.cpp
@@ -111,7 +111,5 @@ namespace test1 {
B::B() {}
// CHECK: define void @_ZN5test11BC2Ev(
// CHECK: [[THIS:%.*]] = load [[B:%.*]]**
- // CHECK-NEXT: [[A:%.*]] = getelementptr inbounds [[B:%.*]]* [[THIS]], i32 0, i32 1
- // CHECK-NEXT: [[BEGIN:%.*]] = getelementptr inbounds [0 x {{%.*}}]* [[A]], i32 0, i32 0
// CHECK-NEXT: ret void
}