shithub: mc

Download patch

ref: 0f956d6bb55e0455326f4627024c1fa8c8adbff8
parent: 003485264d138db7f41fcde610fa6cbc19944035
author: Ori Bernstein <ori@eigenstate.org>
date: Tue May 8 18:33:00 EDT 2018

Don't specify .comm alignment.

	It seems to confuse lld.

--- a/6/gengas.c
+++ b/6/gengas.c
@@ -428,7 +428,7 @@
 		writeblob(fd, b);
 		blobfree(b);
 	} else {
-		fprintf(fd, ".comm %s,%zd,5\n", lbl, size(blob));
+		fprintf(fd, ".comm %s,%zd\n", lbl, size(blob));
 	}
 }