Skip to content

Commit

Permalink
Revert Float16 ABI change, for now.
Browse files Browse the repository at this point in the history
  • Loading branch information
maleadt committed Oct 5, 2023
1 parent 11a1a42 commit 74f2e5e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/abi_x86_64.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,7 @@ struct Classification {
void classifyType(Classification& accum, jl_datatype_t *dt, uint64_t offset) const
{
// Floating point types
if (dt == jl_float64_type || dt == jl_float32_type || dt == jl_float16_type ||
dt == jl_bfloat16_type) {
if (dt == jl_float64_type || dt == jl_float32_type || dt == jl_bfloat16_type) {
accum.addField(offset, Sse);
}
// Misc types
Expand Down

0 comments on commit 74f2e5e

Please sign in to comment.