summaryrefslogtreecommitdiffstats
path: root/clang/test
diff options
context:
space:
mode:
authorMike Stump <mrs@apple.com>2009-07-21 21:03:09 +0000
committerMike Stump <mrs@apple.com>2009-07-21 21:03:09 +0000
commitdf3f1447e424b6c1d2e5647b63afb5b52a41fc3e (patch)
tree3bed2173319bbdcecc16eaf638e5bd1ac91dc3a7 /clang/test
parent3d34492c1f293257b1e9842bc2d25122f87f82a1 (diff)
downloadbcm5719-llvm-df3f1447e424b6c1d2e5647b63afb5b52a41fc3e.tar.gz
bcm5719-llvm-df3f1447e424b6c1d2e5647b63afb5b52a41fc3e.zip
Prep for new warning.
llvm-svn: 76640
Diffstat (limited to 'clang/test')
-rw-r--r--clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/p4-neg.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/p4-neg.cpp b/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/p4-neg.cpp
index b482955818c..399dcc4bed7 100644
--- a/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/p4-neg.cpp
+++ b/clang/test/CXX/temp/temp.decls/temp.fct/temp.over.link/p4-neg.cpp
@@ -17,11 +17,11 @@ template<typename T>
struct MetaFun;
template<typename T>
- typename MetaFun<T*>::type f0(const T&) { } // expected-note{{previous}}
+ typename MetaFun<T*>::type f0(const T&) { while (1) {} } // expected-note{{previous}}
template<class U>
- typename MetaFun<U*>::type f0(const U&) { } // expected-error{{redefinition}}
+ typename MetaFun<U*>::type f0(const U&) { while (1) {} } // expected-error{{redefinition}}
// FIXME: We need canonicalization of expressions for this to work
// template<int> struct A { };
// template<int I> void f0(A<I>) { } // Xpected-note{{previous}}
-// template<int J> void f0(A<J>) { } // Xpected-error{{redefinition}} \ No newline at end of file
+// template<int J> void f0(A<J>) { } // Xpected-error{{redefinition}}
OpenPOWER on IntegriCloud