diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-02-03 19:40:15 -0500 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-02-03 19:40:15 -0500 |
commit | cdb77b44e0958546fd8c8c98692de654194408fc (patch) | |
tree | faa8cb588b44fb1d1fa54b303c9de7ea5923067d | |
parent | 34290e54d4c4fb87518a664c77244f6e7e4fca6e (diff) |
temp fix for Math float issue
-rw-r--r-- | lib/Target/JSBackend/CallHandlers.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/JSBackend/CallHandlers.h b/lib/Target/JSBackend/CallHandlers.h index d3b3dfa668..dc66bec5f6 100644 --- a/lib/Target/JSBackend/CallHandlers.h +++ b/lib/Target/JSBackend/CallHandlers.h @@ -81,7 +81,7 @@ DEF_CALL_HANDLER(__default__, { if (NumArgs > 0) text += ","; } // this is an ffi call if we need casts, and it is not a Math_ builtin - bool FFI = NeedCasts && Name.find("Math_") != 0; + bool FFI = NeedCasts; // XXX FIXME && Name.find("Math_") != 0; unsigned FFI_OUT = FFI ? ASM_FFI_OUT : 0; for (int i = 0; i < NumArgs; i++) { if (!NeedCasts) { |