diff options
-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) { |