diff options
author | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-07-08 02:38:24 +0000 |
---|---|---|
committer | Richard Smith <richard-llvm@metafoo.co.uk> | 2012-07-08 02:38:24 +0000 |
commit | 8a874c93d9c1728ca923ecc1ff09da6b6d78c0aa (patch) | |
tree | 9bbec5def2bc86bac80310b13a52a9c04b90942e /clang/test/SemaTemplate/instantiation-depth-subst-2.cpp | |
parent | 17a2ff2494dc140e47b40b05995a654b6989513b (diff) | |
download | bcm5719-llvm-8a874c93d9c1728ca923ecc1ff09da6b6d78c0aa.tar.gz bcm5719-llvm-8a874c93d9c1728ca923ecc1ff09da6b6d78c0aa.zip |
PR9793: Treat substitution as an instantiation step for the purpose of the
-ftemplate-depth limit. There are various ways to get an infinite (or merely
huge) stack of substitutions with no intervening instantiations. This is also
consistent with gcc's behavior.
llvm-svn: 159907
Diffstat (limited to 'clang/test/SemaTemplate/instantiation-depth-subst-2.cpp')
-rw-r--r-- | clang/test/SemaTemplate/instantiation-depth-subst-2.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/clang/test/SemaTemplate/instantiation-depth-subst-2.cpp b/clang/test/SemaTemplate/instantiation-depth-subst-2.cpp new file mode 100644 index 00000000000..a29d6b5a1b4 --- /dev/null +++ b/clang/test/SemaTemplate/instantiation-depth-subst-2.cpp @@ -0,0 +1,9 @@ +// RUN: %clang_cc1 -verify %s -ftemplate-depth 2 + +template<int N> struct S { }; +// FIXME: We produce the same 'instantiation depth' error here many times +// (2^(depth+1) in total), due to additional lookups performed as part of +// error recovery in DiagnoseTwoPhaseOperatorLookup. +template<typename T> S<T() + T()> operator+(T, T); // expected-error 8{{}} expected-note 10{{}} +S<0> s; +int k = s + s; // expected-error {{invalid operands to binary expression}} |