mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
Fix issue where macros with bodies are not filtered from liveness tracing. #818
This commit is contained in:
@@ -504,7 +504,7 @@ INLINE void sema_trace_decl_dynamic_methods(Decl *decl)
|
||||
for (unsigned i = 0; i < method_count; i++)
|
||||
{
|
||||
Decl *method = methods[i];
|
||||
if (!method->func_decl.attr_dynamic) continue;
|
||||
if (method->decl_kind == DECL_MACRO || !method->func_decl.attr_dynamic) continue;
|
||||
sema_trace_decl_liveness(method);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +1 @@
|
||||
#define COMPILER_VERSION "0.4.552"
|
||||
#define COMPILER_VERSION "0.4.553"
|
||||
Reference in New Issue
Block a user