-
Notifications
You must be signed in to change notification settings - Fork 170
C: Support passes #1636
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
C: Support passes #1636
Conversation
_lpython_return_variable = x&y; | ||
return _lpython_return_variable; | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not good. Please skip inline function calls pass in C. inline __attribute__((always_inline))
directs the C compiler to do the same and since C language is a high level language so the generated code should be as readable as possible.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
Looks good. |
No description provided.