-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix tupling of fn args for rust-call ABI functions #32393
Conversation
r? @Aatch (rust_highfive has picked a reviewer for you, use r? to override) |
r? @eddyb |
Err, so having a runpass test with an endless loop isn't that smart it seems... facepalm |
@@ -1685,6 +1685,7 @@ impl<'blk, 'tcx> FunctionContext<'blk, 'tcx> { | |||
for (j, &tupled_arg_ty) in tupled_arg_tys.iter().enumerate() { | |||
let dst = StructGEP(bcx, llval, j); | |||
let arg = &self.fn_ty.args[idx]; | |||
idx += 1; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Huh, did I forget this in both places? I know @nikomatsakis noticed this was missing on the MIR side.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Copy-Pasta? 🍝 ;-)
Test fixed |
@bors r+ |
📌 Commit 4fd318b has been approved by |
Fix tupling of fn args for rust-call ABI functions Fixes #32389
@bors: retry force clean |
Fix tupling of fn args for rust-call ABI functions Fixes #32389
Fixes #32389