From 222e2a7620e6520ffaf4fc4e69d79c18da31542e Mon Sep 17 00:00:00 2001 From: "Zancanaro; Carlo" Date: Mon, 24 Sep 2012 09:58:17 +1000 Subject: Add the clang library to the repo (with some of my changes, too). --- clang/test/CodeGenCXX/member-templates.cpp | 31 ++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 clang/test/CodeGenCXX/member-templates.cpp (limited to 'clang/test/CodeGenCXX/member-templates.cpp') diff --git a/clang/test/CodeGenCXX/member-templates.cpp b/clang/test/CodeGenCXX/member-templates.cpp new file mode 100644 index 0000000..7e4bdca --- /dev/null +++ b/clang/test/CodeGenCXX/member-templates.cpp @@ -0,0 +1,31 @@ +// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm -o - | FileCheck %s + +// CHECK: ; ModuleID +struct A { + template + A(T); +}; + +template A::A(T) {} + +struct B { + template + B(T); +}; + +template B::B(T) {} + +// CHECK: define weak_odr void @_ZN1BC1IiEET_(%struct.B* %this, i32) unnamed_addr +// CHECK: define weak_odr void @_ZN1BC2IiEET_(%struct.B* %this, i32) unnamed_addr +template B::B(int); + +template +struct C { + void f() { + int a[] = { 1, 2, 3 }; + } +}; + +void f(C& c) { + c.f(); +} -- cgit v1.2.3