From 0905072b3ccfcb394b1dca2405a55cff4e2b9271 Mon Sep 17 00:00:00 2001 From: Ash Wolf Date: Fri, 20 Jan 2023 11:56:38 +0000 Subject: tons more renaming of stuff --- compiler_and_linker/unsorted/FuncLevelAsmPPC.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'compiler_and_linker/unsorted/FuncLevelAsmPPC.c') diff --git a/compiler_and_linker/unsorted/FuncLevelAsmPPC.c b/compiler_and_linker/unsorted/FuncLevelAsmPPC.c index dead030..8b45459 100644 --- a/compiler_and_linker/unsorted/FuncLevelAsmPPC.c +++ b/compiler_and_linker/unsorted/FuncLevelAsmPPC.c @@ -85,7 +85,7 @@ void assign_local_addresses(void) { for (list = locals; list; list = list->next) { vi = CodeGen_GetNewVarInfo(); list->object->u.var.info = vi; - list->object->flags |= OBJECT_FLAGS_1; + list->object->flags |= OBJECT_USED; vi->used = 1; } @@ -241,7 +241,7 @@ void Assembler(Object *func) { cprep_eoltokens = 0; name = CMangler_GetLinkName(func)->name; - func->flags |= OBJECT_FLAGS_4; + func->flags |= OBJECT_DEFINED; if (fralloc_parameter_area_size) update_out_param_size(fralloc_parameter_area_size); -- cgit v1.2.3