Skip to content

Commit deeb6bd

Browse files
committed
Temporarily disable f16 and f128 support
There are a bunch of intrinsics not yet implemented.
1 parent 43f0ce4 commit deeb6bd

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/lib.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -547,8 +547,9 @@ fn target_config(sess: &Session, target_info: &LockedTargetInfo) -> TargetConfig
547547
},
548548
);
549549

550-
let has_reliable_f16 = target_info.supports_target_dependent_type(CType::Float16);
551-
let has_reliable_f128 = target_info.supports_target_dependent_type(CType::Float128);
550+
// FIXME re-enable once the necessary intrinsics are implemented
551+
let has_reliable_f16 = false; //target_info.supports_target_dependent_type(CType::Float16);
552+
let has_reliable_f128 = false; //target_info.supports_target_dependent_type(CType::Float128);
552553

553554
TargetConfig {
554555
target_features,

0 commit comments

Comments
 (0)