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
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue