From 6a3642e49a0d591f6c0ae9fe8718aa0e1b2bbfe2 Mon Sep 17 00:00:00 2001 From: Olaf Seibert Date: Mon, 15 Nov 2021 10:31:26 +0100 Subject: [PATCH] Nicer, more specific name for temp symbol. --- extree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extree.c b/extree.c index 195de20..4003a77 100644 --- a/extree.c +++ b/extree.c @@ -368,7 +368,7 @@ EX_TREE *evaluate( /* Make a temp sym with the negative value of the given sym (this works for symbols within relocatable sections too) */ - res = new_temp_sym("*TEMP", tp->data.symbol->section, (unsigned) -(int) tp->data.symbol->value); + res = new_temp_sym("*NEG", tp->data.symbol->section, (unsigned) -(int) tp->data.symbol->value); res->cp = tp->cp; free_tree(tp); } else {