aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2004-02-23 10:49:07 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-07 21:01:27 -0700
commit48b2d8bb696a61b74661d5976365af0758d0f563 (patch)
tree6ac126f2eed20f97a8a4d2fb0faff2ac590553bd /compile-i386.c
parentFix another missing dependency. (diff)
downloadsparse-48b2d8bb696a61b74661d5976365af0758d0f563.tar.gz
sparse-48b2d8bb696a61b74661d5976365af0758d0f563.tar.bz2
sparse-48b2d8bb696a61b74661d5976365af0758d0f563.zip
Remove now-obsolete temporary statement types.
They were only used for the original pre-instruction linearization.
Diffstat (limited to 'compile-i386.c')
-rw-r--r--compile-i386.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/compile-i386.c b/compile-i386.c
index dab66c0..d04d735 100644
--- a/compile-i386.c
+++ b/compile-i386.c
@@ -1820,22 +1820,6 @@ static struct storage *x86_statement(struct statement *stmt)
case STMT_ASM:
printf("\tasm( .... )\n");
break;
-
- case STMT_CONDTRUE:
- printf("\tjne xxx*\n");
- break;
-
- case STMT_CONDFALSE:
- printf("\tje xxx*\n");
- break;
-
- case STMT_MULTIVALUE:
- printf("\tswitch value!!\n");
- break;
-
- case STMT_MULTIJMP:
- printf("\tswitch case xxx\n");
- break;
}
return NULL;
}