Fix issue where macros with bodies are not filtered from liveness tracing. #818

This commit is contained in:
Christoffer Lerno
2023-07-06 17:30:50 +02:00
parent 731729cf1b
commit 97ded16ea2
2 changed files with 2 additions and 2 deletions

View File

@@ -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);
}
}

View File

@@ -1 +1 @@
#define COMPILER_VERSION "0.4.552"
#define COMPILER_VERSION "0.4.553"