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
The RV_MARCHID macro is defined using a left shift operation without
explicitly specifying the type of the constant. This can lead to
undefined behavior, specifically a shift too many bits issue.
Modify the RV_MARCHID definition to use the ULL suffix for the
constant, ensuring it is treated as an unsigned long long. This
eliminates the undefined behavior.
0 commit comments