destructor call order is important here

This commit is contained in:
Wolfgang Bumiller 2015-02-01 11:52:58 +01:00
parent 66d908f39b
commit d8e9b1b35d

View file

@ -946,6 +946,10 @@ ast_function::~ast_function()
ast_unref(m_fixedparams);
if (m_return_value)
ast_unref(m_return_value);
// force this to be cleared before m_varargs/m_argc as blocks might
// try to access them via ast_unref()
m_blocks.clear();
}
const char* ast_function::makeLabel(const char *prefix)