Skip to content

Commit a2533ed

Browse files
committed
Auto merge of #3131 - RalfJung:rustup, r=RalfJung
Rustup Also fix josh build (they have a `deny(warnings)` that's causing issues).
2 parents e9e1b3d + d36c3e7 commit a2533ed

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ jobs:
188188
with:
189189
fetch-depth: 256 # get a bit more of the history
190190
- name: install josh-proxy
191-
run: cargo +stable install josh-proxy --git https://github.com/josh-project/josh --tag r22.12.06
191+
run: RUSTFLAGS="--cap-lints warn" cargo +stable install josh-proxy --git https://github.com/josh-project/josh --tag r22.12.06
192192
- name: setup bot git name and email
193193
run: |
194194
git config --global user.name 'The Miri Conjob Bot'

rust-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
c104861b7b51d2c28e7023e7e53db16cc6677e29
1+
029d00c4a3176a705e0092de3e1739f8b7c32010

src/shims/backtrace.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ pub trait EvalContextExt<'mir, 'tcx: 'mir>: crate::MiriInterpCxExt<'mir, 'tcx> {
135135
this.tcx.sess.source_map().lookup_char_pos(BytePos(offset.bytes().try_into().unwrap()));
136136

137137
let name = fn_instance.to_string();
138-
let filename = lo.file.name.prefer_remapped().to_string();
138+
let filename = lo.file.name.prefer_remapped_unconditionaly().to_string();
139139

140140
Ok((fn_instance, lo, name, filename))
141141
}

0 commit comments

Comments
 (0)