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
We've observed this in two RELs so far - zeroed data not going in a .bss section but rather a .data section, with a locally applied #pragma explicit_zero_data on as a workaround. Is there a different way this can happen?
Enabling #pragma explicit_zero_data on globally would probably break a ton of files but removing the = nullptr or = 0.0f could restore them. It's probably not the right solution though.
The text was updated successfully, but these errors were encountered:
We've observed this in two RELs so far - zeroed data not going in a .bss section but rather a .data section, with a locally applied
#pragma explicit_zero_data on
as a workaround. Is there a different way this can happen?Enabling
#pragma explicit_zero_data on
globally would probably break a ton of files but removing the= nullptr
or= 0.0f
could restore them. It's probably not the right solution though.The text was updated successfully, but these errors were encountered: