ref: e1cd16b3c9ed2ae62c14d078b49351eb62824617
parent: dc0a09c53185d53b88d3c1eff7c35e647d608cc9
author: Quentin Rameau <quinq@fifth.space>
date: Wed Jun 1 18:04:39 EDT 2016
[cc2] fix alloc() The order of "type" and '=' was inverted
--- a/cc2/arch/qbe/code.c
+++ b/cc2/arch/qbe/code.c
@@ -296,7 +296,7 @@
{
Type *tp = &sym->type;
- printf("\t%s %s=\talloc%lu\t%lu\n",
+ printf("\t%s =%s\talloc%lu\t%lu\n",
symname(sym), size2asm(tp), tp->size, tp->align);
}