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 | 334ce7c1c4075fc3579ab1e3b9e76296b0da53ed (patch) | |
tree | 53f287975e343e6be5d8866577430946779f78ed /clang/test/CodeGenCXX/mangle-subst-std.cpp | |
parent | 5ffef745c2913c6e84d26d390d748a2381225f24 (diff) | |
download | bcm5719-llvm-334ce7c1c4075fc3579ab1e3b9e76296b0da53ed.tar.gz bcm5719-llvm-334ce7c1c4075fc3579ab1e3b9e76296b0da53ed.zip |
Revert the ctor/dtor alias optimization for now; the buildbots can detect
some failure here that I can't.
llvm-svn: 96612
Diffstat (limited to 'clang/test/CodeGenCXX/mangle-subst-std.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/mangle-subst-std.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/clang/test/CodeGenCXX/mangle-subst-std.cpp b/clang/test/CodeGenCXX/mangle-subst-std.cpp index aea841557c9..913c8f101b5 100644 --- a/clang/test/CodeGenCXX/mangle-subst-std.cpp +++ b/clang/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() { } }; |