Skip to content

Commit 9210d78

Browse files
committed
oops
1 parent 461ac5a commit 9210d78

File tree

1 file changed

+1
-1
lines changed
  • compiler/rustc_codegen_gcc/src/intrinsic

1 file changed

+1
-1
lines changed

compiler/rustc_codegen_gcc/src/intrinsic/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ impl<'a, 'gcc, 'tcx> IntrinsicCallBuilderMethods<'tcx> for Builder<'a, 'gcc, 'tc
496496
}
497497
}
498498
sym::fabs => 'fabs: {
499-
let func = match args[0].layout.ty.kind() {
499+
let func = match *args[0].layout.ty.kind() {
500500
ty::Float(ty::FloatTy::F16) => break 'fabs f16_builtin(self, name, args),
501501
ty::Float(ty::FloatTy::F32) => self.context.get_builtin_function("fabsf"),
502502
ty::Float(ty::FloatTy::F64) => self.context.get_builtin_function("fabs"),

0 commit comments

Comments
 (0)