Do not use target dependent Float32

fix formatting
This commit is contained in:
Robert Zakrzewski 2024-05-24 08:05:57 +02:00
parent b94cb8c01c
commit 0dad11feb9

View File

@ -137,9 +137,9 @@ fn type_f16(&self) -> Type<'gcc> {
#[cfg(feature = "master")]
fn type_f32(&self) -> Type<'gcc> {
if self.context.get_target_info().supports_target_dependent_type(CType::Float32) {
return self.context.new_c_type(CType::Float32);
}
// if self.context.get_target_info().supports_target_dependent_type(CType::Float32) {
// return self.context.new_c_type(CType::Float32);
// }
self.float_type
}