Remove unused but set variable.

R=ager@chromium.org

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

git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@7799 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
parent 5cd715cb
...@@ -1253,8 +1253,7 @@ bool Genesis::CompileScriptCached(Vector<const char> name, ...@@ -1253,8 +1253,7 @@ bool Genesis::CompileScriptCached(Vector<const char> name,
? top_context->builtins() ? top_context->builtins()
: top_context->global()); : top_context->global());
bool has_pending_exception; bool has_pending_exception;
Handle<Object> result = Execution::Call(fun, receiver, 0, NULL, &has_pending_exception);
Execution::Call(fun, receiver, 0, NULL, &has_pending_exception);
if (has_pending_exception) return false; if (has_pending_exception) return false;
return true; return true;
} }
......
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