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
Under some circumstances, Musashi uses too large bit-shift values. This results in undefined behaviour.
This is what the UndefinedBehaviorSanitizer (which is part of clang) reports:
The problem with undefined behaviour shouldn't be underestimated, because some modern compilers (such as clang) make use of it to aggressively optimise code. Code with undefined behaviour can behave differently when compiled with "clang -O0" or "clang -O1", respectively (even on the same machine).
The text was updated successfully, but these errors were encountered:
Under some circumstances, Musashi uses too large bit-shift values. This results in undefined behaviour.
This is what the UndefinedBehaviorSanitizer (which is part of clang) reports:
The problem with undefined behaviour shouldn't be underestimated, because some modern compilers (such as clang) make use of it to aggressively optimise code. Code with undefined behaviour can behave differently when compiled with "clang -O0" or "clang -O1", respectively (even on the same machine).
The text was updated successfully, but these errors were encountered: