From f9f0d8a4f1a27ac05a65757efb68bde1fab316cc Mon Sep 17 00:00:00 2001 From: Paul Tarjan Date: Fri, 17 May 2013 16:04:21 -0700 Subject: [PATCH] fix unused variable --- hphp/runtime/vm/translator/hopt/codegen.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/hphp/runtime/vm/translator/hopt/codegen.cpp b/hphp/runtime/vm/translator/hopt/codegen.cpp index a51a08569..36fc755b1 100644 --- a/hphp/runtime/vm/translator/hopt/codegen.cpp +++ b/hphp/runtime/vm/translator/hopt/codegen.cpp @@ -4839,7 +4839,6 @@ void CodeGenerator::cgInterpOne(IRInstruction* inst) { SSATmp* sp = inst->getSrc(1); SSATmp* pcOffTmp = inst->getSrc(2); SSATmp* spAdjustmentTmp = inst->getSrc(3); - Type resultType = inst->getTypeParam(); int64_t pcOff = pcOffTmp->getValInt(); auto opc = *(getCurFunc()->unit()->at(pcOff));