aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2004-08-01 22:10:24 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-07 21:02:31 -0700
commita9a6e25425101d430256f0cd333bef1e24794fca (patch)
tree2d811bd78cabc6e7c60889cf9e2345ac07ac8c8f /compile-i386.c
parentMake expression expansion calculate the "cost" of the (diff)
downloadsparse-a9a6e25425101d430256f0cd333bef1e24794fca.tar.gz
sparse-a9a6e25425101d430256f0cd333bef1e24794fca.tar.bz2
sparse-a9a6e25425101d430256f0cd333bef1e24794fca.zip
EXPR_SAFELOGICAL is unnecessary. It ends up being the same as EXPR_BINOP.
Make linearize.h show the right ops for the logical (as opposed to binary) and/or EXPR_BINOP.
Diffstat (limited to 'compile-i386.c')
-rw-r--r--compile-i386.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/compile-i386.c b/compile-i386.c
index 2b379f0..dace971 100644
--- a/compile-i386.c
+++ b/compile-i386.c
@@ -2121,7 +2121,6 @@ static struct storage *x86_expression(struct expression *expr)
case EXPR_BINOP:
case EXPR_COMMA:
case EXPR_LOGICAL:
- case EXPR_SAFELOGICAL:
return emit_binop(expr);
case EXPR_PREOP:
return x86_preop(expr);