Skip to content

Commit 818f130

Browse files
update make_indirect_byval comment about missing fix (this PR is the fix)
1 parent 207fe38 commit 818f130

File tree

1 file changed

+1
-3
lines changed
  • compiler/rustc_target/src/abi/call

1 file changed

+1
-3
lines changed

compiler/rustc_target/src/abi/call/mod.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -633,10 +633,8 @@ impl<'a, Ty> ArgAbi<'a, Ty> {
633633
/// If the resulting alignment differs from the type's alignment,
634634
/// the argument will be copied to an alloca with sufficient alignment,
635635
/// either in the caller (if the type's alignment is lower than the byval alignment)
636-
/// or in the callee (if the type's alignment is higher than the byval alignment),
636+
/// or in the callee (if the type's alignment is higher than the byval alignment),
637637
/// to ensure that Rust code never sees an underaligned pointer.
638-
///
639-
/// † This is currently broken, see <https://github.com/rust-lang/rust/pull/122212>.
640638
pub fn make_indirect_byval(&mut self, byval_align: Option<Align>) {
641639
assert!(!self.layout.is_unsized(), "used byval ABI for unsized layout");
642640
self.make_indirect();

0 commit comments

Comments
 (0)