From b24af7d3f79de32451c55bbdd7a27bf64598044f Mon Sep 17 00:00:00 2001 From: Quentin Carbonneaux Date: Mon, 22 Apr 2024 13:58:29 +0200 Subject: revert 1b7770e271 Quotes are used on Apple target variants to flag that we must not add the _ symbol prefix. --- arm64/isel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arm64') diff --git a/arm64/isel.c b/arm64/isel.c index 870a121..062beb3 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); -- cgit v1.2.3