Drop quotes around floating point constant labels
This is incompatible with binutils gas older than 2.26.
This commit is contained in:
parent
be5d46fe7d
commit
1b7770e271
3 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue