From 9e7e5bffc4e4af37a6c29657ba87fbb6a1123cf2 Mon Sep 17 00:00:00 2001 From: Michael Forney Date: Tue, 14 May 2019 14:34:23 -0700 Subject: Allow specifying literal global names --- gas.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'gas.c') diff --git a/gas.c b/gas.c index 8e2f04c..2a24ab2 100644 --- a/gas.c +++ b/gas.c @@ -39,7 +39,7 @@ gasemitdat(Dat *d, FILE *f) if (d->isstr) { if (d->type != DB) err("strings only supported for 'b' currently"); - fprintf(f, "\t.ascii \"%s\"\n", d->u.str); + fprintf(f, "\t.ascii %s\n", d->u.str); } else if (d->isref) { fprintf(f, "%s %s%s%+"PRId64"\n", -- cgit 1.4.1