diff options
author | Ori Bernstein <ori@eigenstate.org> | 2015-11-18 11:29:09 -0800 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2015-11-18 11:45:43 -0800 |
commit | f2027c43e0e85e679c4988954b8e9b35c0a1bdd3 (patch) | |
tree | 2eb9fbbd4529bf25c6cc408ecc7733b3911a62e1 /6/asm.h | |
parent | 82ffa8d68b897200ae2fedc863aa7ac064660d1d (diff) | |
download | mc-f2027c43e0e85e679c4988954b8e9b35c0a1bdd3.tar.gz |
Fix BSS on OSX.
Our alignment was too big, and we really didn't need to leading
'_'. In fact, we didn't even need zero blobs.
Diffstat (limited to '6/asm.h')
-rw-r--r-- | 6/asm.h | 2 |
1 files changed, 0 insertions, 2 deletions
@@ -67,7 +67,6 @@ typedef enum { Btbytes, Btseq, Btpad, - Btzero, } Blobtype; struct Blob { @@ -254,7 +253,6 @@ void gengas(Node *file, char *out); void genp9(Node *file, char *out); /* blob stuff */ -Blob *mkblobzero(size_t sz); Blob *mkblobpad(size_t sz); Blob *mkblobi(Blobtype type, uint64_t ival); Blob *mkblobbytes(char *buf, size_t len); |