-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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 the miri submodule #51225
Fix the miri submodule #51225
Conversation
src/librustc_mir/interpret/memory.rs
Outdated
@@ -844,7 +844,7 @@ impl<'a, 'mir, 'tcx, M: Machine<'mir, 'tcx>> Memory<'a, 'mir, 'tcx, M> { | |||
} | |||
|
|||
// Forget all the relocations. | |||
alloc.relocations.remove_range(first ..= last); | |||
alloc.relocations.remove_range(first .. last); |
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.
This shouldn't have spaces around ..
.
r=me with nit fixed |
@bors r=eddyb |
📌 Commit 9af6a22 has been approved by |
🔒 Merge conflict |
@bors r=eddyb |
📌 Commit 0639451 has been approved by |
⌛ Testing commit 0639451 with merge 82ea6202061350da966d299e12ca3f36f95862dc... |
💔 Test failed - status-travis |
Spurious?
@bors retry |
☀️ Test successful - status-appveyor, status-travis |
Tested on commit rust-lang/rust@1dcda69. Direct link to PR: <rust-lang/rust#51225> 🎉 miri on windows: build-fail → test-pass. 🎉 miri on linux: build-fail → test-pass.
cc @bjorn3
r? @eddyb