Hi, 

Does anyone know when and if there will be support for Atomics in Safari?

[Error] ReferenceError: Can't find variable: Atomics

I know it's a stretch but is it possible to prevent a line of Javascript 
from being optimized?

Preventing :
while(sharedArray[0] == 0);

from being optimized to :
const tmp = sharedArray[0];
while(tmp == 0);
Thanks!
Regards

-- 
You received this message because you are subscribed to the Google Groups 
"emscripten-discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/emscripten-discuss/6bc40ea1-dc91-4ea8-ac32-65ce1774c78a%40googlegroups.com.

Reply via email to