aboutsummaryrefslogtreecommitdiff
path: root/lib/AST/ExprConstant.cpp
diff options
context:
space:
mode:
authorRichard Smith <richard-llvm@metafoo.co.uk>2011-11-11 05:48:57 +0000
committerRichard Smith <richard-llvm@metafoo.co.uk>2011-11-11 05:48:57 +0000
commitcd99b072e8b32075da6233cbf14ea58a5c82de4f (patch)
tree6314c2bb4d192e3de46445ded004eb93da9befd1 /lib/AST/ExprConstant.cpp
parent6edae59e75ae96b562635721e847562cee7b666d (diff)
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
Diffstat (limited to 'lib/AST/ExprConstant.cpp')
-rw-r--r--lib/AST/ExprConstant.cpp2
1 files changed, 1 insertions, 1 deletions
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<CCValue, 16> ArgVector;
+typedef SmallVector<CCValue, 8> ArgVector;
}
/// EvaluateArgs - Evaluate the arguments to a function call.