Skip to content

Commit 61be4e8

Browse files
authored
Rollup merge of rust-lang#81065 - osa1:cranelift_semicolon_warning, r=jyn514
codegen_cranelift: Fix redundant semicolon warn
2 parents b67689b + b681631 commit 61be4e8

File tree

1 file changed

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

1 file changed

+1
-1
lines changed

Diff for: 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)