add missing gas prefix
Thanks to Jorge Acereda Maciá for catching this.
This commit is contained in:
parent
47ee853c96
commit
3a6cc4d0c0
1 changed files with 2 additions and 2 deletions
4
gas.c
4
gas.c
|
@ -42,8 +42,8 @@ gasemitdat(Dat *d, FILE *f)
|
|||
fprintf(f, "\t.ascii \"%s\"\n", d->u.str);
|
||||
}
|
||||
else if (d->isref) {
|
||||
fprintf(f, "%s %s%+"PRId64"\n",
|
||||
dtoa[d->type], d->u.ref.nam,
|
||||
fprintf(f, "%s %s%s%+"PRId64"\n",
|
||||
dtoa[d->type], gassym, d->u.ref.nam,
|
||||
d->u.ref.off);
|
||||
}
|
||||
else {
|
||||
|
|
Loading…
Add table
Reference in a new issue