scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

commit 523e296ed5f0134551bc487706433e3649b5c801
parent d2a403e1c27fb66ba879ec42af7ee50c35accb1a
Author: Lucas Gabriel Vuotto <lvuotto92@gmail.com>
Date:   Mon,  6 Mar 2017 09:17:06 -0300

[cc1] Fix TFUNDEF value

Signed-off-by: Lucas Gabriel Vuotto <lvuotto92@gmail.com>

Diffstat:
Mcc1/cc1.h | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cc1/cc1.h b/cc1/cc1.h @@ -23,7 +23,7 @@ enum typeprops { TAGGREG = 1 << 4, /* the type is struct or union */ TK_R = 1 << 5, /* this is a K&R-function */ TELLIPSIS= 1 << 6, /* this function has an ellipsis par */ - TFUNDEF = 2 << 7, /* function definition */ + TFUNDEF = 1 << 7, /* function definition */ }; enum inputtype {