diff options
author | John McCall <rjmccall@apple.com> | 2010-02-18 21:31:48 +0000 |
---|---|---|
committer | John McCall <rjmccall@apple.com> | 2010-02-18 21:31:48 +0000 |
commit | 8e51a1f5da6ef4a1a168d14116c6eed3a578a263 (patch) | |
tree | 5491283b764974f5718025ac6ff4dbb87591dc29 /test/CodeGenCXX/mangle-subst-std.cpp | |
parent | b372b0ff1f1a0c6814163e0fe2f22f343bac87a8 (diff) |
Revert the ctor/dtor alias optimization for now; the buildbots can detect
some failure here that I can't.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@96612 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenCXX/mangle-subst-std.cpp')
-rw-r--r-- | test/CodeGenCXX/mangle-subst-std.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/test/CodeGenCXX/mangle-subst-std.cpp b/test/CodeGenCXX/mangle-subst-std.cpp index aea841557c..913c8f101b 100644 --- a/test/CodeGenCXX/mangle-subst-std.cpp +++ b/test/CodeGenCXX/mangle-subst-std.cpp @@ -1,10 +1,9 @@ // RUN: %clang_cc1 -emit-llvm %s -o - -triple=x86_64-apple-darwin9 | FileCheck %s -// CHECK: @_ZNSt1AC1Ev = alias {{.*}} @_ZNSt1AC2Ev - namespace std { struct A { A(); }; + // CHECK: define void @_ZNSt1AC1Ev // CHECK: define void @_ZNSt1AC2Ev A::A() { } }; |