scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

commit 47e042802dd3438d7a009a30aaf73bbb7bc7ffed
parent cbc25129f24988965a55c87501f7e36cbd6fc245
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Tue, 26 Jan 2016 14:30:58 +0100

[cc2-i386] Use global instead of globl

Diffstat:
Mcc2/arch/i386-sysv/code.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cc2/arch/i386-sysv/code.c b/cc2/arch/i386-sysv/code.c @@ -169,7 +169,7 @@ label(Symbol *sym) case LOCAL: return; case GLOB: - printf("\t.globl\t%s\n", name); + printf("\t.global\t%s\n", name); break; }