summaryrefslogtreecommitdiff
path: root/test/SemaTemplate/instantiation-depth-defarg.cpp
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2012-07-08 21:06:29 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2012-07-08 21:06:29 +0000
commit6ff6cfe696df9e618c3deae7b34c701d58484c23 (patch)
tree07b01292fdba421f15bb64ac384d0f3f8ac22ca7 /test/SemaTemplate/instantiation-depth-defarg.cpp
parent6994bb61eff86b2db53253ec74b24c4142fc080e (diff)
downloadclang-6ff6cfe696df9e618c3deae7b34c701d58484c23.tar.gz
Halve template depth in an attempt to get this test passing on mingw32.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159917 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/SemaTemplate/instantiation-depth-defarg.cpp')
-rw-r--r--test/SemaTemplate/instantiation-depth-defarg.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/test/SemaTemplate/instantiation-depth-defarg.cpp b/test/SemaTemplate/instantiation-depth-defarg.cpp
index f386a6a28f..6032a33514 100644
--- a/test/SemaTemplate/instantiation-depth-defarg.cpp
+++ b/test/SemaTemplate/instantiation-depth-defarg.cpp
@@ -1,13 +1,11 @@
-// RUN: %clang_cc1 -fsyntax-only -verify -ftemplate-depth 512 -ftemplate-backtrace-limit 4 %s
-
-// XFAIL: mingw32
+// RUN: %clang_cc1 -fsyntax-only -verify -ftemplate-depth 256 -ftemplate-backtrace-limit 4 %s
template<int N> struct S {
typedef typename S<N-1>::type type;
static int f(int n = S<N-1>::f()); // \
-// expected-error{{recursive template instantiation exceeded maximum depth of 512}} \
+// expected-error{{recursive template instantiation exceeded maximum depth of 256}} \
// expected-note 3 {{instantiation of default function argument}} \
-// expected-note {{skipping 509 contexts in backtrace}} \
+// expected-note {{skipping 253 contexts in backtrace}} \
// expected-note {{use -ftemplate-depth=N to increase recursive template instantiation depth}}
};