mirror of
git://c9x.me/qbe.git
synced 2026-04-05 18:09:47 +00:00
do not use _ in identifiers
This commit is contained in:
parent
395891e95c
commit
f3eb798d54
@ -192,7 +192,7 @@ ssafix(Fn *f, int t)
|
||||
abort();
|
||||
for (t1=t0; t0<f->ntmp; t0++) {
|
||||
f->sym[t0].type = STmp;
|
||||
snprintf(f->sym[t0].name, NString, "%s_%d",
|
||||
snprintf(f->sym[t0].name, NString, "%s%d",
|
||||
f->sym[t].name, t0-t1);
|
||||
}
|
||||
free(top);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user