File tree 4 files changed +10
-8
lines changed
compiler/rustc_codegen_cranelift
4 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ These are a few functions that allow you to easily run rust code from the shell
54
54
55
55
``` bash
56
56
function jit_naked() {
57
- echo " $@ " | $cg_clif_dir /dist/rustc-clif - -Zunstable-features -Cllvm-args=mode=jit -Cprefer-dynamic
57
+ echo " $@ " | $cg_clif_dir /dist/rustc-clif - -Zunstable-options -Cllvm-args=mode=jit-lazy -Cprefer-dynamic
58
58
}
59
59
60
60
function jit() {
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ version = 3
4
4
5
5
[[package ]]
6
6
name = " addr2line"
7
- version = " 0.20 .0"
7
+ version = " 0.21 .0"
8
8
source = " registry+https://github.com/rust-lang/crates.io-index"
9
- checksum = " f4fa78e18c64fce05e902adecd7a5eed15a5e0a3439f7b0e169f0252214865e3 "
9
+ checksum = " 8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb "
10
10
dependencies = [
11
11
" compiler_builtins" ,
12
12
" gimli" ,
@@ -140,9 +140,9 @@ dependencies = [
140
140
141
141
[[package ]]
142
142
name = " gimli"
143
- version = " 0.27.2 "
143
+ version = " 0.28.0 "
144
144
source = " registry+https://github.com/rust-lang/crates.io-index"
145
- checksum = " ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4 "
145
+ checksum = " 6fb8d784f27acf97159b40fc4db5ecd8aa23b9ad5ef69cdd136d3bc80665f0c0 "
146
146
dependencies = [
147
147
" compiler_builtins" ,
148
148
" rustc-std-workspace-alloc" ,
@@ -205,9 +205,9 @@ dependencies = [
205
205
206
206
[[package ]]
207
207
name = " object"
208
- version = " 0.31.1 "
208
+ version = " 0.32.0 "
209
209
source = " registry+https://github.com/rust-lang/crates.io-index"
210
- checksum = " 8bda667d9f2b5051b8833f59f3bf748b28ef54f850f4fcb389a252aa383866d1 "
210
+ checksum = " 77ac5bbd07aea88c60a577a1ce218075ffd59208b2d7ca97adf9bfc5aeb21ebe "
211
211
dependencies = [
212
212
" compiler_builtins" ,
213
213
" memchr" ,
Original file line number Diff line number Diff line change 1
1
[toolchain]
2
- channel = "nightly-2023-08-08 "
2
+ channel = "nightly-2023-09-06 "
3
3
components = ["rust-src", "rustc-dev", "llvm-tools"]
Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ rm tests/ui/proc-macro/quote-debug.rs
45
45
rm tests/ui/proc-macro/no-missing-docs.rs
46
46
rm tests/ui/rust-2018/proc-macro-crate-in-paths.rs
47
47
rm tests/ui/proc-macro/allowed-signatures.rs
48
+ rm tests/ui/proc-macro/no-mangle-in-proc-macro-issue-111888.rs
48
49
49
50
# vendor intrinsics
50
51
rm tests/ui/sse2.rs # cpuid not supported, so sse2 not detected
@@ -114,6 +115,7 @@ rm tests/ui/mir/mir_misc_casts.rs # depends on deduplication of constants
114
115
rm tests/ui/mir/mir_raw_fat_ptr.rs # same
115
116
rm tests/ui/consts/issue-33537.rs # same
116
117
rm tests/ui/layout/valid_range_oob.rs # different ICE message
118
+ rm tests/ui/const-generics/generic_const_exprs/issue-80742.rs # gives error instead of ICE with cg_clif
117
119
118
120
rm tests/ui/consts/issue-miri-1910.rs # different error message
119
121
rm tests/ui/consts/offset_ub.rs # same
You can’t perform that action at this time.
0 commit comments