Skip to content

Commit 0dad11f

Browse files
author
Robert Zakrzewski
committed
Do not use target dependent Float32
fix formatting
1 parent b94cb8c commit 0dad11f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/type_.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,9 @@ impl<'gcc, 'tcx> BaseTypeMethods<'tcx> for CodegenCx<'gcc, 'tcx> {
137137

138138
#[cfg(feature = "master")]
139139
fn type_f32(&self) -> Type<'gcc> {
140-
if self.context.get_target_info().supports_target_dependent_type(CType::Float32) {
141-
return self.context.new_c_type(CType::Float32);
142-
}
140+
// if self.context.get_target_info().supports_target_dependent_type(CType::Float32) {
141+
// return self.context.new_c_type(CType::Float32);
142+
// }
143143
self.float_type
144144
}
145145

0 commit comments

Comments
 (0)