summary refs log tree commit diff
path: root/src/bltin/test.c
diff options
context:
space:
mode:
authorHerbert Xu <herbert@gondor.apana.org.au>2008-07-13 20:05:56 +0800
committerHerbert Xu <herbert@gondor.apana.org.au>2008-07-13 20:05:56 +0800
commit74fbf95549bb68a2d40c0f91fdb04a0a720e3920 (patch)
treed25fab4c655e00a70bc1f444a9b275fafdd3d948 /src/bltin/test.c
parent[BUILTIN] Fixed 3,4-argument cases for test per POSIX (diff)
downloaddash-74fbf95549bb68a2d40c0f91fdb04a0a720e3920.tar.gz
dash-74fbf95549bb68a2d40c0f91fdb04a0a720e3920.zip
[BUILTIN] Made aexpr/oexpr non-recursive
Making these functions non-recursive is straightforward since they
carry no state.

Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to '')
-rw-r--r--src/bltin/test.c31
1 files changed, 19 insertions, 12 deletions
diff --git a/src/bltin/test.c b/src/bltin/test.c
index 89d8d86..32a12fe 100644
--- a/src/bltin/test.c
+++ b/src/bltin/test.c
@@ -232,24 +232,31 @@ syntax(const char *op, const char *msg)
 static int
 oexpr(enum token n)
 {
-	int res;
-
-	res = aexpr(n);
-	if (t_lex(*++t_wp) == BOR)
-		return oexpr(t_lex(*++t_wp)) || res;
-	t_wp--;
+	int res = 0;
+
+	for (;;) {
+		res |= aexpr(n);
+		n = t_lex(t_wp[1]);
+		if (n != BOR)
+			break;
+		n = t_lex(*(t_wp += 2));
+	}
 	return res;
 }
 
 static int
 aexpr(enum token n)
 {
-	int res;
-
-	res = nexpr(n);
-	if (t_lex(*++t_wp) == BAND)
-		return aexpr(t_lex(*++t_wp)) && res;
-	t_wp--;
+	int res = 1;
+
+	for (;;) {
+		if (!nexpr(n))
+			res = 0;
+		n = t_lex(t_wp[1]);
+		if (n != BAND)
+			break;
+		n = t_lex(*(t_wp += 2));
+	}
 	return res;
 }