]> granicus.if.org Git - clang/commitdiff
Reduce the constexpr stack pressure somewhat. Hopefully this will be enough to
authorRichard Smith <richard-llvm@metafoo.co.uk>
Fri, 11 Nov 2011 05:48:57 +0000 (05:48 +0000)
committerRichard Smith <richard-llvm@metafoo.co.uk>
Fri, 11 Nov 2011 05:48:57 +0000 (05:48 +0000)
please the buildbots.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@144375 91177308-0d34-0410-b5e6-96231b3b80d8

lib/AST/ExprConstant.cpp

index 75f32ab5d46f2d2b8c9d35f6144d6e532d3f267c..2027b42d966383e8d81c83064bcf2ec3c95274c3 100644 (file)
@@ -1033,7 +1033,7 @@ static EvalStmtResult EvaluateStmt(CCValue &Result, EvalInfo &Info,
 }
 
 namespace {
-typedef SmallVector<CCValue, 16> ArgVector;
+typedef SmallVector<CCValue, 8> ArgVector;
 }
 
 /// EvaluateArgs - Evaluate the arguments to a function call.