aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@home.transmeta.com>2003-05-31 13:19:17 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-07 21:00:47 -0700
commit32dc632cf37e8a7a9443e6b38085420ec74ac9ac (patch)
tree5bb4100f07d589786cbdee7f1b115f938172ae5b /parse.h
parentDon't try to give typdefs storage bits. (diff)
downloadsparse-32dc632cf37e8a7a9443e6b38085420ec74ac9ac.tar.gz
sparse-32dc632cf37e8a7a9443e6b38085420ec74ac9ac.tar.bz2
sparse-32dc632cf37e8a7a9443e6b38085420ec74ac9ac.zip
Simplify if-statements without even evaluating the false side
for compile-time constant conditionals. This allows inline functions and macros to do "illegal" things, as long as it's compile-time deterministic that they aren't done.
Diffstat (limited to 'parse.h')
-rw-r--r--parse.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/parse.h b/parse.h
index e47e7e0..d6e223a 100644
--- a/parse.h
+++ b/parse.h
@@ -27,7 +27,6 @@ enum statement_type {
struct statement {
enum statement_type type;
struct position pos;
- struct statement *next;
union {
struct label_arg {
struct symbol *label;