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

Aaron Ballman aaron at aaronballman.com
Thu Mar 21 12:38:59 PDT 2013


Author: aaronballman
Date: Thu Mar 21 14:38:59 2013
New Revision: 177655

URL: http://llvm.org/viewvc/llvm-project?rev=177655&view=rev
Log:
Delayed template parsing is not supported by the AST serialization system yet, so turning it off.  This fixes a test breakage caused by r177336.

Modified:
    cfe/trunk/test/Frontend/ast-main.cpp

Modified: cfe/trunk/test/Frontend/ast-main.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/Frontend/ast-main.cpp?rev=177655&r1=177654&r2=177655&view=diff
==============================================================================
--- cfe/trunk/test/Frontend/ast-main.cpp (original)
+++ cfe/trunk/test/Frontend/ast-main.cpp Thu Mar 21 14:38:59 2013
@@ -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
 





More information about the cfe-commits mailing list