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

@ -44,7 +44,7 @@ fixarg(Ref *r, int k, Ins *i, 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);
emit(Oload, k, r1, CON(c-fn->con), R);