Anders Carlsson | e7c8cb6 | 2009-09-26 20:53:44 +0000 | [diff] [blame^] | 1 | // RUN: clang-cc -emit-llvm %s -o - -triple=x86_64-apple-darwin9 | FileCheck %s |
2 | |||||
3 | namespace std { | ||||
4 | struct A { A(); }; | ||||
5 | |||||
6 | // CHECK: define void @_ZNSt1AC1Ev | ||||
7 | // CHECK: define void @_ZNSt1AC2Ev | ||||
8 | A::A() { } | ||||
9 | }; |