From b7e5c1d9d20441a260699f6711af698b32700eb4 Mon Sep 17 00:00:00 2001 From: chriseth Date: Mon, 1 Jun 2015 18:30:05 +0200 Subject: [PATCH] Do not put duplicate labels for accessor functions. --- Compiler.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Compiler.cpp b/Compiler.cpp index 93d786bed..6425367dd 100644 --- a/Compiler.cpp +++ b/Compiler.cpp @@ -288,7 +288,6 @@ bool Compiler::visit(VariableDeclaration const& _variableDeclaration) m_breakTags.clear(); m_continueTags.clear(); - m_context << m_context.getFunctionEntryLabel(_variableDeclaration); ExpressionCompiler(m_context, m_optimize).appendStateVariableAccessor(_variableDeclaration); return false;