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, if an Xita developer uses a boolean truth (a boolean expression that always returns True or False) such as the following stub, it does the full calculation dynamically in assembly.
1&&23||0
This behavior is no good, because there is NEVER a situation where the above code isn't the same as the following:
TrueTrue
Boolean truths should be calculated and optimized into their final resting value within the Xita cross-compiler backend.
The text was updated successfully, but these errors were encountered:
Currently, if an Xita developer uses a boolean truth (a boolean expression that always returns True or False) such as the following stub, it does the full calculation dynamically in assembly.
This behavior is no good, because there is NEVER a situation where the above code isn't the same as the following:
Boolean truths should be calculated and optimized into their final resting value within the Xita cross-compiler backend.
The text was updated successfully, but these errors were encountered: