aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Carbonneaux <[email protected]>2024-04-12 11:37:35 +0200
committerQuentin Carbonneaux <[email protected]>2024-04-12 11:37:35 +0200
commit875c1abf93da1045f290b98aece97c6c83ac1fbb (patch)
tree4d2344682ea22d6f99cec34e3fdee3291ff5617f
parent8ded7a56a2d7f1922b4f58a953f9ac37aa8be737 (diff)
drop unnecessary check
-rw-r--r--emit.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/emit.c b/emit.c
index 82eba9e..ba0174b 100644
--- a/emit.c
+++ b/emit.c
@@ -97,8 +97,6 @@ emitdat(Dat *d, FILE *f)
fprintf(f, "\t.fill %"PRId64",1,0\n", d->u.num);
break;
default:
- if (d->lnk->common)
- die("unsupported common data item");
if (zero != -1) {
emitlnk(d->name, d->lnk, SecData, f);
if (zero > 0)