From f8af978a60a0a00813e7a57f93d9a5ba4df44069 Mon Sep 17 00:00:00 2001 From: forsyth Date: Tue, 27 Apr 2010 22:08:33 +0100 Subject: 20100427-2208 --- utils/5c/txt.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'utils/5c/txt.c') diff --git a/utils/5c/txt.c b/utils/5c/txt.c index af53e1de..f97eb61a 100644 --- a/utils/5c/txt.c +++ b/utils/5c/txt.c @@ -170,7 +170,7 @@ garg1(Node *n, Node *tn1, Node *tn2, int f, Node **fnxp) nod.left = *fnxp; nod.right = n; nod.type = n->type; - cgen(&nod, Z, 0); + cgen(&nod, Z); (*fnxp)++; } return; @@ -187,18 +187,18 @@ garg1(Node *n, Node *tn1, Node *tn2, int f, Node **fnxp) if(REGARG >= 0 && curarg == 0 && typechlp[n->type->etype]) { regaalloc1(tn1, n); if(n->complex >= FNX) { - cgen(*fnxp, tn1, 0); + cgen(*fnxp, tn1); (*fnxp)++; } else - cgen(n, tn1, 0); + cgen(n, tn1); return; } regalloc(tn1, n, Z); if(n->complex >= FNX) { - cgen(*fnxp, tn1, 0); + cgen(*fnxp, tn1); (*fnxp)++; } else - cgen(n, tn1, 0); + cgen(n, tn1); regaalloc(tn2, n); gopcode(OAS, tn1, Z, tn2); regfree(tn1); -- cgit v1.2.3