scc

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

commit b9f8c19467f09236a38525bf45ddfea4ae8b240d
parent f67d0534ce16ec2ac8a50c21e5f2e87915756dfe
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Fri, 16 Sep 2016 14:57:09 +0200

[cc2-qbe] Fix whitespace error

Diffstat:
Mcc2/arch/qbe/code.c | 10+++++-----
1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/cc2/arch/qbe/code.c b/cc2/arch/qbe/code.c @@ -404,12 +404,12 @@ unary(void) static void call(void) { - struct opdata *p = &optbl[pc->op]; - char to[ADDR_LEN], from[ADDR_LEN]; + struct opdata *p = &optbl[pc->op]; + char to[ADDR_LEN], from[ADDR_LEN]; - strcpy(to, addr2txt(&pc->to)); - strcpy(from, addr2txt(&pc->from1)); - printf("\t%s =%c\tcall\t%s(", to, p->letter, from); + strcpy(to, addr2txt(&pc->to)); + strcpy(from, addr2txt(&pc->from1)); + printf("\t%s =%c\tcall\t%s(", to, p->letter, from); } static void