From cd99b072e8b32075da6233cbf14ea58a5c82de4f Mon Sep 17 00:00:00 2001 From: Richard Smith Date: Fri, 11 Nov 2011 05:48:57 +0000 Subject: [PATCH] Reduce the constexpr stack pressure somewhat. Hopefully this will be enough to please the buildbots. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@144375 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/AST/ExprConstant.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/AST/ExprConstant.cpp b/lib/AST/ExprConstant.cpp index 75f32ab5d4..2027b42d96 100644 --- a/lib/AST/ExprConstant.cpp +++ b/lib/AST/ExprConstant.cpp @@ -1033,7 +1033,7 @@ static EvalStmtResult EvaluateStmt(CCValue &Result, EvalInfo &Info, } namespace { -typedef SmallVector ArgVector; +typedef SmallVector ArgVector; } /// EvaluateArgs - Evaluate the arguments to a function call. -- 2.50.1