shithub: scc

Download patch

ref: d9cfe3ba586178478b6d89751132b7767b7e17af
parent: ad4b2e7209a854e38920dfd1dc25315809b43ce5
author: Roberto E. Vargas Caballero <k0ga@shike2.com>
date: Tue Dec 12 03:56:36 EST 2017

[as] Remove default option in section flags

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

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