Rollup merge of #69653 - matthiaskrgr:needless_bool, r=Dylan-DPC
use conditions directly
This commit is contained in:
commit
099cd7f402
@ -117,8 +117,7 @@ pub(super) fn emit_va_arg(
|
|||||||
// Windows x86_64
|
// Windows x86_64
|
||||||
("x86_64", true) => {
|
("x86_64", true) => {
|
||||||
let target_ty_size = bx.cx.size_of(target_ty).bytes();
|
let target_ty_size = bx.cx.size_of(target_ty).bytes();
|
||||||
let indirect =
|
let indirect: bool = target_ty_size > 8 || !target_ty_size.is_power_of_two();
|
||||||
if target_ty_size > 8 || !target_ty_size.is_power_of_two() { true } else { false };
|
|
||||||
emit_ptr_va_arg(bx, addr, target_ty, indirect, Align::from_bytes(8).unwrap(), false)
|
emit_ptr_va_arg(bx, addr, target_ty, indirect, Align::from_bytes(8).unwrap(), false)
|
||||||
}
|
}
|
||||||
// For all other architecture/OS combinations fall back to using
|
// For all other architecture/OS combinations fall back to using
|
||||||
|
@ -689,7 +689,7 @@ impl SourceMap {
|
|||||||
whitespace_found = true;
|
whitespace_found = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if whitespace_found && !c.is_whitespace() { false } else { true }
|
!whitespace_found || c.is_whitespace()
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user