From: svenpanne@chromium.org Date: Fri, 20 Jul 2012 07:12:06 +0000 (+0000) Subject: Removed dead variable to make GCC 4.6 happy again. X-Git-Tag: upstream/4.7.83~16277 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b9b206e2f11fe85c7c6f6368519c9caf71b6a49b;p=platform%2Fupstream%2Fv8.git Removed dead variable to make GCC 4.6 happy again. TBR=jkummerow@chromium.org Review URL: https://chromiumcodereview.appspot.com/10802047 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@12149 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/src/compiler.cc b/src/compiler.cc index f56406f02..58ff42c72 100644 --- a/src/compiler.cc +++ b/src/compiler.cc @@ -726,7 +726,6 @@ static void InstallCodeCommon(CompilationInfo* info) { // reset this bit when lazy compiling the code again. if (shared->optimization_disabled()) code->set_optimizable(false); - Handle function = info->closure(); Compiler::RecordFunctionCompilation(Logger::LAZY_COMPILE_TAG, info, shared); }