Unused globals even if they have an initial value should produce unused diagnostic

This commit is contained in:
Dale Weiler 2016-11-19 10:05:58 +00:00
parent 167207e98c
commit eca4e2c309

View file

@ -6226,7 +6226,7 @@ bool parser_finish(parser_t *parser, const char *output)
if (!ast_istype(it, ast_value))
continue;
asvalue = (ast_value*)it;
if (!asvalue->m_uses && !asvalue->m_hasvalue && asvalue->m_vtype != TYPE_FUNCTION) {
if (!asvalue->m_uses && asvalue->m_vtype != TYPE_FUNCTION) {
retval = retval && !compile_warning(asvalue->m_context, WARN_UNUSED_VARIABLE,
"unused global: `%s`", asvalue->m_name);
}