Skip to content

Commit b681631

Browse files
committed
codegen_cranelift: Fix redundant semicolon warn
1 parent 6c869d3 commit b681631

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)