From 3fe617cc098df04d16a660e1fd879fea4df31de9 Mon Sep 17 00:00:00 2001 From: Gabor Greif Date: Mon, 30 Aug 2010 21:45:06 +0000 Subject: [PATCH] add two more use-cases (explicit instantiation) that should pass now llvm-svn: 112533 --- clang/test/SemaTemplate/inject-templated-friend-post.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/clang/test/SemaTemplate/inject-templated-friend-post.cpp b/clang/test/SemaTemplate/inject-templated-friend-post.cpp index aae7c01681e9..98ac38edfac0 100644 --- a/clang/test/SemaTemplate/inject-templated-friend-post.cpp +++ b/clang/test/SemaTemplate/inject-templated-friend-post.cpp @@ -1,5 +1,7 @@ // RUN: %clang %s -S -emit-llvm -o - | grep -e "define linkonce_odr.*_ZlsR11std_ostreamRK8StreamerI3FooE" // RUN: %clang %s -S -emit-llvm -o - -DPROTOTYPE | grep -e "define linkonce_odr.*_ZlsR11std_ostreamRK8StreamerI3FooE" +// RUN: %clang %s -S -emit-llvm -o - -DINSTANTIATE | grep -e "define linkonce_odr.*_ZlsR11std_ostreamRK8StreamerI3FooE" +// RUN: %clang %s -S -emit-llvm -o - -DPROTOTYPE -DINSTANTIATE | grep -e "define linkonce_odr.*_ZlsR11std_ostreamRK8StreamerI3FooE" // RUN: %clang -cc1 %s -DREDEFINE -verify // RUN: %clang -cc1 %s -DPROTOTYPE -DREDEFINE -verify // PR8007: friend function not instantiated, reordered version. @@ -55,10 +57,12 @@ std_ostream& operator << (std_ostream& o, const Streamer&) // expected-note } #endif +#ifndef INSTANTIATE template <> void Streamer::operator () (std_ostream& o) const // expected-note{{requested here}} { } +#endif int main(void) {