diff options
author | Francois Pichet <pichet2000@gmail.com> | 2011-09-01 16:38:08 +0000 |
---|---|---|
committer | Francois Pichet <pichet2000@gmail.com> | 2011-09-01 16:38:08 +0000 |
commit | 8efcc0184a6dfe1ea799d3a6b9c1312ef1fac11d (patch) | |
tree | 8f683006faaf176a18626fd107a99a08a5f8a75e /test/Index/annotate-tokens-cxx0x.cpp | |
parent | ab784085b774169cac0850a7e3151be97beb8399 (diff) |
Enable -fdelayed-template-parsing by default on Win32.
I had to force -fno-delayed-template-parsing on some Index tests because delayed template parsing will change the output of some tests.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@138942 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Index/annotate-tokens-cxx0x.cpp')
-rw-r--r-- | test/Index/annotate-tokens-cxx0x.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Index/annotate-tokens-cxx0x.cpp b/test/Index/annotate-tokens-cxx0x.cpp index bf86f325fb..9dd5aa604a 100644 --- a/test/Index/annotate-tokens-cxx0x.cpp +++ b/test/Index/annotate-tokens-cxx0x.cpp @@ -8,7 +8,7 @@ void test() { decltype(a) b; } -// RUN: c-index-test -test-annotate-tokens=%s:1:1:5:1 -std=c++0x %s | FileCheck %s +// RUN: c-index-test -test-annotate-tokens=%s:1:1:5:1 -fno-delayed-template-parsing -std=c++0x %s | FileCheck %s // CHECK: Identifier: "args" [3:20 - 3:24] UnexposedExpr=args:2:15 // CHECK: Identifier: "Args" [3:38 - 3:42] TypeRef=Args:1:22 |