We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38324a1 commit 549eac3Copy full SHA for 549eac3
compiler/rustc_target/src/abi/call/mod.rs
@@ -60,7 +60,7 @@ pub enum PassMode {
60
/// attribute. The `byval` argument will use a byte array with the same size as the Rust type
61
/// (which ensures that padding is preserved and that we do not rely on LLVM's struct layout),
62
/// and will use the alignment specified in `attrs.pointee_align` (if `Some`) or the type's
63
- /// alignment, depending on the target's ABI. This means that the alignment will not always
+ /// alignment (if `None`). This means that the alignment will not always
64
/// match the Rust type's alignment; see documentation of `make_indirect_byval` for more info.
65
///
66
/// `on_stack` cannot be true for unsized arguments, i.e., when `meta_attrs` is `Some`.
0 commit comments