We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 96a7267 commit 8b979e5Copy full SHA for 8b979e5
compiler/rustc_target/src/abi/call/mod.rs
@@ -54,8 +54,8 @@ pub enum PassMode {
54
/// argument. (This is the only mode that supports unsized arguments.)
55
/// `on_stack` defines that the value should be passed at a fixed stack offset in accordance to
56
/// the ABI rather than passed using a pointer. This corresponds to the `byval` LLVM argument
57
- /// attribute (using the Rust type of this argument). `on_stack` cannot be true for unsized
58
- /// arguments, i.e., when `meta_attrs` is `Some`.
+ /// attribute. `on_stack` cannot be true for unsized arguments, i.e., when `meta_attrs` is
+ /// `Some`.
59
Indirect { attrs: ArgAttributes, meta_attrs: Option<ArgAttributes>, on_stack: bool },
60
}
61
0 commit comments