-
Notifications
You must be signed in to change notification settings - Fork 127
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement macros defined in <stdbool.h>
#124
Conversation
Macro 'bool', 'true', 'false' are defined in c.c. In addition, this commit also tweaks 'define' preprocessor directive so that parsing identifier after 'define' is possible.
Can the proposed change deal with |
Now I supported |
stdbool.h
macros<stdbool.h>
The size of type _Bool is same as char type, which takes 1 byte. Notice that currently lexer aliasing is unreliable due to the token type determination algorithm does not correctly recognize T_identifier and T_string at this moment.
Thank @ChAoSUnItY for contributing! |
Reverts all utilization of "_Bool" type in previous PR sysprog21#124, which cuases unexpected stage 2 compilation failure described in Issue Additionally, fixed a minor aliasing token determination issue. This is resolved by hardcoded string comparison, which is only applicable for "_Bool" identifier token in this case.
Reverts all utilization of "_Bool" type in previous PR sysprog21#124, which cuases unexpected stage 2 compilation failure described in Issue Additionally, fixed a minor aliasing token determination issue. This is resolved by hardcoded string comparison, which is only applicable for "_Bool" identifier token in this case.
Reverts all utilization of "_Bool" type in previous PR sysprog21#124, which cuases unexpected stage 2 compilation failure described in sysprog21#125. Additionally, fixed a minor aliasing token determination issue. This is resolved by hardcoded string comparison, which is only applicable for "_Bool" identifier token in this case.
Reverts all utilization of "_Bool" type in previous PR #124, which causes unexpected stage 2 compilation failure. Additionally, fixed a minor aliasing token determination issue. This is resolved by hardcoded string comparison, which is only applicable for "_Bool" identifier token in this case. Close #125
stdbool.h
macros inlib/c.c
bool
,true
andfalse
.stdbool.h
macros inlexer.c
andparser.c