diff -r ef0373b55136 -r 758a864f9613 src/3rdparty/webkit/JavaScriptCore/runtime/Arguments.h --- a/src/3rdparty/webkit/JavaScriptCore/runtime/Arguments.h Fri Sep 17 08:34:18 2010 +0300 +++ b/src/3rdparty/webkit/JavaScriptCore/runtime/Arguments.h Mon Oct 04 01:19:32 2010 +0300 @@ -55,6 +55,10 @@ class Arguments : public JSObject { public: + // Use an enum because otherwise gcc insists on doing a memory + // read. + enum { MaxArguments = 0x10000 }; + enum NoParametersType { NoParameters }; Arguments(CallFrame*);