-
Notifications
You must be signed in to change notification settings - Fork 8
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
optimize #include files with macro guards #4
Labels
Comments
a35a585 has a bug - it cannot properly handle if a pp-directive follows a macro guard, e.g., #ifndef FOO
#define FOO
BODY1
#endif
#ifndef BAR
#define BAR
BODY2
#endif
Similar examples include: #ifndef FOO
#define FOO
BODY
#endif
#pragma nothing and #pragma nothing
#ifndef FOO
#define FOO
#endif
|
Those bugs described above have been fixed by 2187744. |
Performance improvement by macro guard optimization: time for i in {1..100}; do sc decl.c > /dev/null 2>&1; done
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No description provided.
The text was updated successfully, but these errors were encountered: