-
Notifications
You must be signed in to change notification settings - Fork 13.3k
Add rustc_mir::interpret::Machine::enforce_abi()
#85557
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
Conversation
Some changes occured to the CTFE / Miri engine cc @rust-lang/miri |
r? @lcnr (rust-highfive has picked a reviewer for you, use r? to override) |
📌 Commit c69fba9 has been approved by |
⌛ Testing commit c69fba9 with merge 6445ac8c16b5759ec367d7f4f58791e36b29a55b... |
@bors retry r- |
This comment has been minimized.
This comment has been minimized.
Thanks :) |
📌 Commit 7e42c97 has been approved by |
⌛ Testing commit 7e42c97 with merge d53219b491e71c6b7f4d09069dd1904cae55533a... |
No job actually failed though...? Very strange. |
I think bors is just broken... |
☀️ Test successful - checks-actions |
To specify whether to skip the ABI check for function calls, so that we could test unwinding out of a
extern "C"
function call in Miri by disabling the check: rust-lang/miri#1776 (comment)I have tested that it works in Miri with a
-Zmiri-disable-abi-check
command line flag.