We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 32127b0 + 28e3d76 commit 3704eacCopy full SHA for 3704eac
src/abi_aarch64.cpp
@@ -83,7 +83,8 @@ static Type *get_llvm_fptype(jl_datatype_t *dt)
83
default:
84
return nullptr;
85
}
86
- return jl_is_floattype((jl_value_t*)dt) ? lltype : nullptr;
+ return ((jl_floatingpoint_type && jl_is_floattype((jl_value_t*)dt)) ?
87
+ lltype : nullptr);
88
89
90
static Type *get_llvm_fp_or_vectype(jl_datatype_t *dt)
src/abi_arm.cpp
@@ -54,7 +54,8 @@ static Type *get_llvm_fptype(jl_datatype_t *dt)
54
55
return NULL;
56
57
- return jl_is_floattype((jl_value_t*)dt) ? lltype : NULL;
58
+ lltype : NULL);
59
60
61
static size_t isLegalHA(jl_datatype_t *dt, Type *&base);
0 commit comments