Commit 0f496238 authored by dimich@chromium.org's avatar dimich@chromium.org

Fix compilation on Windows post-7252

Review URL: http://codereview.chromium.org/6708014

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@7253 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 4cbf3478
......@@ -682,9 +682,10 @@ class ArgumentsAccessStub: public CodeStub {
}
int GetArgumentsObjectSize() const {
return (type_ == NEW_STRICT)
? Heap::kArgumentsObjectSizeStrict
: Heap::kArgumentsObjectSize;
if (type_ == NEW_STRICT)
return Heap::kArgumentsObjectSizeStrict;
else
return Heap::kArgumentsObjectSize;
}
const char* GetName() { return "ArgumentsAccessStub"; }
......
......@@ -138,9 +138,6 @@ unsigned int Heap::gc_count_ = 0;
GCTracer* Heap::tracer_ = NULL;
const int Heap::kArgumentsObjectSize;
const int Heap::kArgumentsObjectSizeStrict;
int Heap::unflattened_strings_length_ = 0;
int Heap::always_allocate_scope_depth_ = 0;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment