Skip to content

Commit 62a8655

Browse files
committed
[STASH]
1 parent e301ae3 commit 62a8655

File tree

5 files changed

+19
-35
lines changed

5 files changed

+19
-35
lines changed

Diff for: Cargo.lock

-17
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Cargo.toml

+12-12
Original file line numberDiff line numberDiff line change
@@ -25,20 +25,20 @@ smallvec = "1.8.1"
2525

2626
[patch.crates-io]
2727
# Uncomment to use an unreleased version of cranelift
28-
cranelift-codegen = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main", version = "0.120.0" }
29-
cranelift-frontend = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main", version = "0.120.0" }
30-
cranelift-module = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main", version = "0.120.0" }
31-
cranelift-native = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main", version = "0.120.0" }
32-
cranelift-jit = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main", version = "0.120.0" }
33-
cranelift-object = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main", version = "0.120.0" }
28+
#cranelift-codegen = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main", version = "0.120.0" }
29+
#cranelift-frontend = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main", version = "0.120.0" }
30+
#cranelift-module = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main", version = "0.120.0" }
31+
#cranelift-native = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main", version = "0.120.0" }
32+
#cranelift-jit = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main", version = "0.120.0" }
33+
#cranelift-object = { git = "https://github.com/bytecodealliance/wasmtime.git", branch = "main", version = "0.120.0" }
3434

3535
# Uncomment to use local checkout of cranelift
36-
#cranelift-codegen = { path = "../wasmtime/cranelift/codegen" }
37-
#cranelift-frontend = { path = "../wasmtime/cranelift/frontend" }
38-
#cranelift-module = { path = "../wasmtime/cranelift/module" }
39-
#cranelift-native = { path = "../wasmtime/cranelift/native" }
40-
#cranelift-jit = { path = "../wasmtime/cranelift/jit" }
41-
#cranelift-object = { path = "../wasmtime/cranelift/object" }
36+
cranelift-codegen = { path = "../wasmtime/cranelift/codegen" }
37+
cranelift-frontend = { path = "../wasmtime/cranelift/frontend" }
38+
cranelift-module = { path = "../wasmtime/cranelift/module" }
39+
cranelift-native = { path = "../wasmtime/cranelift/native" }
40+
cranelift-jit = { path = "../wasmtime/cranelift/jit" }
41+
cranelift-object = { path = "../wasmtime/cranelift/object" }
4242

4343
[features]
4444
# Enable features not ready to be enabled when compiling as part of rustc

Diff for: config.txt

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@
1313
# Comment any of these lines to skip individual tests.
1414

1515
testsuite.no_sysroot
16-
build.mini_core
17-
build.example
18-
jit.mini_core_hello_world
19-
aot.mini_core_hello_world
16+
#build.mini_core
17+
#build.example
18+
#jit.mini_core_hello_world
19+
#aot.mini_core_hello_world
2020

2121
testsuite.base_sysroot
2222
aot.arbitrary_self_types_pointers_and_wrappers
2323
aot.issue_91827_extern_types
24-
jit.std_example
24+
#jit.std_example
2525
aot.std_example
2626
aot.dst_field_align
2727
aot.subslice-patterns-const-eval

Diff for: scripts/test_rustc_tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,5 +180,5 @@ index 073116933bd..c3e4578204d 100644
180180
EOF
181181

182182
echo "[TEST] rustc test suite"
183-
COMPILETEST_FORCE_STAGE0=1 ./x.py test --stage 0 --test-args=--no-capture tests/{codegen-units,run-make,ui,incremental}
183+
COMPILETEST_FORCE_STAGE0=1 ./x.py test --stage 0 tests/{codegen-units,ui,incremental}
184184
popd

Diff for: src/common.rs

+1
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,7 @@ pub(crate) struct FunctionCx<'m, 'clif, 'tcx: 'm> {
290290

291291
/// During cleanup the exception pointer will be stored at the location pointed to by this
292292
/// pointer.
293+
// FIXME use SSA variable
293294
pub(crate) exception_slot: Pointer,
294295

295296
pub(crate) clif_comments: crate::pretty_clif::CommentWriter,

0 commit comments

Comments
 (0)