scc

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

commit 93d75a07943f4352dfe617954341c0c7a0ffe532
parent c54001c818324371bcd4b29f52ab99171ef267cb
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Fri,  2 Dec 2016 14:31:19 +0100

Revert "[cc2] Fix the order of elements of decl"

This reverts commit 821f4c28e2e9ae7404e87b9e04047b5273dfda1b.

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

diff --git a/cc2/parser.c b/cc2/parser.c @@ -501,8 +501,8 @@ aggregate(void) Type *tp; Symbol *sym; - size = pop(); align = pop(); + size = pop(); name = pop(); tp = pop();