aboutsummaryrefslogtreecommitdiff
path: root/arm64
diff options
context:
space:
mode:
authorMichael Forney <[email protected]>2024-03-20 23:29:33 -0700
committerQuentin Carbonneaux <[email protected]>2024-03-26 09:22:06 +0100
commit1b7770e271252cf01ec2e13b97c82922387e3e41 (patch)
tree0332d8a4bd7c0b05191834172ef74228ba121d2d /arm64
parentbe5d46fe7d876a0722c9475ae9dbc7baa60de46a (diff)
Drop quotes around floating point constant labels
This is incompatible with binutils gas older than 2.26.
Diffstat (limited to 'arm64')
-rw-r--r--arm64/isel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arm64/isel.c b/arm64/isel.c
index 062beb3..870a121 100644
--- a/arm64/isel.c
+++ b/arm64/isel.c
@@ -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);