You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the generated C code is very verbose. It should be simpler. This would make the code easier to read and debug.
Here are some ideas:
- Add single icode opcode for return None.
- Remove unnecessary gotos to the next label.
- Use macros for common int operations (inline functions might degrade efficiency).
- Use macros/inline functions for calls with 1..4 arguments, for example.
- Simplify function prolog code.
The text was updated successfully, but these errors were encountered:
Currently the generated C code is very verbose. It should be simpler. This would make the code easier to read and debug.
Here are some ideas:
- Add single icode opcode for
return None
.- Remove unnecessary gotos to the next label.
- Use macros for common int operations (inline functions might degrade efficiency).
- Use macros/inline functions for calls with 1..4 arguments, for example.
- Simplify function prolog code.
The text was updated successfully, but these errors were encountered: