aboutsummaryrefslogtreecommitdiff
path: root/test/Frontend
diff options
context:
space:
mode:
authorAaron Ballman <aaron@aaronballman.com>2013-03-21 19:38:59 +0000
committerAaron Ballman <aaron@aaronballman.com>2013-03-21 19:38:59 +0000
commit7b79384718666da17dcd7f06d038708fc0528ec0 (patch)
tree46dac4d612ec660e6ce6c475a1c0b6de88035f0e /test/Frontend
parentf3e426b22a36fc31c00ebf7c0de3aa445758b7e6 (diff)
downloadclang_35a-7b79384718666da17dcd7f06d038708fc0528ec0.tar.gz
Delayed template parsing is not supported by the AST serialization system yet, so turning it off. This fixes a test breakage caused by r177336.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@177655 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/Frontend')
-rw-r--r--test/Frontend/ast-main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Frontend/ast-main.cpp b/test/Frontend/ast-main.cpp
index d3d8471cfc..4bddbe1372 100644
--- a/test/Frontend/ast-main.cpp
+++ b/test/Frontend/ast-main.cpp
@@ -1,5 +1,5 @@
// RUN: %clang -emit-llvm -S -o %t1.ll -x c++ - < %s
-// RUN: %clang -emit-ast -o %t.ast %s
+// RUN: %clang -fno-delayed-template-parsing -emit-ast -o %t.ast %s
// RUN: %clang -emit-llvm -S -o %t2.ll -x ast - < %t.ast
// RUN: diff %t1.ll %t2.ll