scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit cdd9b75ceafd8fd974e06199c50005b0510f9fda
parent e56660180cc119105790ffe7bbd53cf5d2fcfbc5
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Tue, 12 Dec 2017 08:56:36 +0000

[as] Remove default option in section flags

All the sections had the load attribute set, but there weren't any
reason to do that.

Diffstat:
Mas/myro.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/as/myro.c b/as/myro.c @@ -49,7 +49,7 @@ writestrings(FILE *fp) static unsigned getsecflags(Section *sp) { - unsigned flags = MYROSEC_LOAD; + unsigned flags = 0; if (sp->flags & SREAD) flags |= MYROSEC_READ;