Drop quotes around floating point constant labels

This is incompatible with binutils gas older than 2.26.
This commit is contained in:
Michael Forney 2024-03-20 23:29:33 -07:00 committed by Quentin Carbonneaux
parent be5d46fe7d
commit 1b7770e271
3 changed files with 3 additions and 3 deletions

View file

@ -112,7 +112,7 @@ fixarg(Ref *pr, int k, int phi, Fn *fn)
n = stashbits(&c->bits, KWIDE(k) ? 8 : 4);
vgrow(&fn->con, ++fn->ncon);
c = &fn->con[fn->ncon-1];
sprintf(buf, "\"%sfp%d\"", T.asloc, n);
sprintf(buf, "%sfp%d", T.asloc, n);
*c = (Con){.type = CAddr};
c->sym.id = intern(buf);
r2 = newtmp("isel", Kl, fn);