[cfe-commits] r144375 - /cfe/trunk/lib/AST/ExprConstant.cpp

Richard Smith richard-llvm at metafoo.co.uk
Thu Nov 10 21:48:57 PST 2011


Author: rsmith
Date: Thu Nov 10 23:48:57 2011
New Revision: 144375

URL: http://llvm.org/viewvc/llvm-project?rev=144375&view=rev
Log:
Reduce the constexpr stack pressure somewhat. Hopefully this will be enough to
please the buildbots.

Modified:
    cfe/trunk/lib/AST/ExprConstant.cpp

Modified: cfe/trunk/lib/AST/ExprConstant.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/AST/ExprConstant.cpp?rev=144375&r1=144374&r2=144375&view=diff
==============================================================================
--- cfe/trunk/lib/AST/ExprConstant.cpp (original)
+++ cfe/trunk/lib/AST/ExprConstant.cpp Thu Nov 10 23:48:57 2011
@@ -1033,7 +1033,7 @@
 }
 
 namespace {
-typedef SmallVector<CCValue, 16> ArgVector;
+typedef SmallVector<CCValue, 8> ArgVector;
 }
 
 /// EvaluateArgs - Evaluate the arguments to a function call.





More information about the cfe-commits mailing list