aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/pre-process.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@penguin.transmeta.com>2003-03-25 15:41:13 -0700
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-07 20:59:46 -0700
commit4fd2962a5ff6b118f287d6dd479a0509e8f25457 (patch)
treed488854b19a795a74966dc1db4ab1d79302cdd12 /pre-process.c
parent1c5968beb66fc631e74fd2ddacaf4c4da52b90cc (diff)
downloadsparse-dev-4fd2962a5ff6b118f287d6dd479a0509e8f25457.tar.gz
Clean up type handling in a big way. Don't leave those
dangling anonymous "int_type" types with magic modifiers, but turn all types into explicit C types.
Diffstat (limited to 'pre-process.c')
-rw-r--r--pre-process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pre-process.c b/pre-process.c
index 7118be1e..5e3f82a1 100644
--- a/pre-process.c
+++ b/pre-process.c
@@ -585,7 +585,7 @@ static int handle_define(struct stream *stream, struct token *head, struct token
}
return 1;
}
- sym = alloc_symbol(left, SYM_NONE);
+ sym = alloc_symbol(left, SYM_NODE);
bind_symbol(sym, name, NS_PREPROCESSOR);
sym->expansion = expansion;