Skip to content

Commit c8bca90

Browse files
authored
Rollup merge of #81065 - osa1:cranelift_semicolon_warning, r=jyn514
codegen_cranelift: Fix redundant semicolon warn
2 parents 6a131cb + b681631 commit c8bca90

File tree

1 file changed

+1
-1
lines changed
  • compiler/rustc_codegen_cranelift/src/intrinsics

1 file changed

+1
-1
lines changed

compiler/rustc_codegen_cranelift/src/intrinsics/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -824,7 +824,7 @@ pub(crate) fn codegen_intrinsic_call<'tcx>(
824824
}
825825
ty => unreachable!("bswap {}", ty),
826826
}
827-
};
827+
}
828828
let res = CValue::by_val(swap(&mut fx.bcx, arg), fx.layout_of(T));
829829
ret.write_cvalue(fx, res);
830830
};

0 commit comments

Comments
 (0)