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
Warning: .ll contains floating-point values with more than 64 bits. Faking values for them. If they are used, this will almost certainly break horribly!
m_ips -0.000000
I am aware a warning is displayed in above code, but in multiple places in the documentation is it noted that this warning is not known to have any averse effects ;)
System
emscripten: git repo Tue Sep 11 19:28:48 2012 -0700
llvm: 3.1
node: v0.8.12
gcc: gcc (Ubuntu/Linaro 4.7.2-1ubuntu1) 4.7.2
uname -a
Linux Lorax 3.5.0-15-generic #22-Ubuntu SMP Wed Sep 19 20:06:19 UTC 2012 i686 i686 i686 GNU/Linux
Ubuntu quantal
cpu/system: Intel(R) Core(TM)2 Duo CPU U9600 @ 1.60GHz
The text was updated successfully, but these errors were encountered:
The compiler warns on floats larger than 64 bits - there is an x86_fp80 (80-bit x86 float) there, which is what the clang frontend does to long doubles. We can't support that.
The long-term fix is to make a clang frontend that does not have this problem, that is, that makes long double mean 64 bits.
gcc division.c && ./a.out
emcc division.c -o division.js && node division.js
I am aware a warning is displayed in above code, but in multiple places in the documentation is it noted that this warning is not known to have any averse effects ;)
System
The text was updated successfully, but these errors were encountered: