Delayed template parsing is not supported by the AST serialization system yet, so turning it off. This fixes a test breakage caused by r177336.

llvm-svn: 177655
This commit is contained in:
Aaron Ballman 2013-03-21 19:38:59 +00:00
parent a1431df540
commit 3fd576f7d6
1 changed files with 1 additions and 1 deletions

View File

@ -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