summaryrefslogtreecommitdiff
path: root/utils/5c/txt.c
diff options
context:
space:
mode:
authorforsyth <forsyth@vitanuova.com>2010-04-27 22:08:33 +0100
committerforsyth <forsyth@vitanuova.com>2010-04-27 22:08:33 +0100
commitf8af978a60a0a00813e7a57f93d9a5ba4df44069 (patch)
treed51effe94b54eb087d5436dad8469f548b3f42b6 /utils/5c/txt.c
parent4206ee1aeaccb7703f3f3613a98a5447f51d6367 (diff)
20100427-2208
Diffstat (limited to 'utils/5c/txt.c')
-rw-r--r--utils/5c/txt.c10
1 files changed, 5 insertions, 5 deletions
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);