Commit 2c533c1a authored by ager@chromium.org's avatar ager@chromium.org

Remove unused variable to please Clang.

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

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@5861 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 1d11e32a
...@@ -1141,9 +1141,8 @@ void StubCompiler::GenerateLoadConstant(JSObject* object, ...@@ -1141,9 +1141,8 @@ void StubCompiler::GenerateLoadConstant(JSObject* object,
__ j(zero, miss, not_taken); __ j(zero, miss, not_taken);
// Check that the maps haven't changed. // Check that the maps haven't changed.
Register reg = CheckPrototypes(object, receiver, holder,
CheckPrototypes(object, receiver, holder, scratch1, scratch2, scratch3, name, miss);
scratch1, scratch2, scratch3, name, miss);
// Return the constant value. // Return the constant value.
__ mov(eax, Handle<Object>(value)); __ mov(eax, Handle<Object>(value));
......
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