Nicer, more specific name for temp symbol.

This commit is contained in:
Olaf Seibert 2021-11-15 10:31:26 +01:00
parent 08c6254bdd
commit 6a3642e49a

View File

@ -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 {