mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-23 13:13:34 +00:00
config.usize_ty -> config.ptr_width
From http://github.com/rust-lang/rust/pull/66719
This commit is contained in:
parent
73646487af
commit
40c91ec758
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ pub struct TriviallyCopyPassByRef {
|
|||
impl<'a, 'tcx> TriviallyCopyPassByRef {
|
||||
pub fn new(limit: Option<u64>, target: &SessionConfig) -> Self {
|
||||
let limit = limit.unwrap_or_else(|| {
|
||||
let bit_width = target.usize_ty.bit_width().expect("usize should have a width") as u64;
|
||||
let bit_width = u64::from(target.ptr_width);
|
||||
// Cap the calculated bit width at 32-bits to reduce
|
||||
// portability problems between 32 and 64-bit targets
|
||||
let bit_width = cmp::min(bit_width, 32);
|
||||
|
|
Loading…
Reference in a new issue