Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
d5273ff
Do intrinsic changes in `rustc_codegen_cranelift`
WaffleLapkin Apr 19, 2024
4ad6c6c
Merge commit 'de5d6523738fd44a0521b6abf3e73ae1df210741' into sync_cg_…
bjorn3 Apr 23, 2024
f7627c3
Fix broken subtree sync
bjorn3 Apr 23, 2024
1122338
Merge branch 'sync_from_rust'
bjorn3 Apr 23, 2024
6a2ad55
Rollup merge of #124003 - WaffleLapkin:dellvmization, r=scottmcm,Ralf…
matthiaskrgr Apr 23, 2024
36449f8
Rollup merge of #124286 - bjorn3:sync_cg_clif-2024-04-23, r=bjorn3
matthiaskrgr Apr 23, 2024
dda4709
Error on using `yield` without also using `#[coroutine]` on the closure
oli-obk Apr 11, 2024
9a57c63
debuginfo: Stabilize `-Z debug-macros`, `-Z collapse-macro-debuginfo`…
petrochenkov Feb 9, 2024
18a109e
Sync from rust aed2187d53b8789e3a37f50ae36f894a2a679077
bjorn3 Apr 28, 2024
a07fd93
Rustup to rustc 1.79.0-nightly (aed2187d5 2024-04-27)
bjorn3 Apr 28, 2024
1e485f1
Fix rustc tests
bjorn3 Apr 28, 2024
05367c5
Downgrade XCode to workaround a bug in ld prime
bjorn3 Apr 28, 2024
18d2fb6
Rustup to rustc 1.80.0-nightly (79734f1db 2024-05-02)
bjorn3 May 3, 2024
c41a7db
Fix rustc test suite
bjorn3 May 3, 2024
88d1068
Remove special case in maybe_create_entry_wrapper
bjorn3 May 3, 2024
b1ebc55
Correctly handle missing CG_CLIF_JIT_ARGS
bjorn3 May 3, 2024
4d6ac05
Add missing arg for the jit.std_example test
bjorn3 May 3, 2024
617c3f6
Refactor float `Primitive`s to a separate `Float` type
beetrees May 6, 2024
0a67bf1
Make builtin_deref just return a Ty
compiler-errors May 10, 2024
80e2a78
Rollup merge of #124957 - compiler-errors:builtin-deref, r=michaelwoe…
matthiaskrgr May 10, 2024
6633d66
Sync from rust 6e1d94708a0a4a35ca7e46c6cac98adf62fe800e
bjorn3 May 11, 2024
250d083
Rustup to rustc 1.80.0-nightly (6e1d94708 2024-05-10)
bjorn3 May 11, 2024
8fe6e74
Fix rustc tests
bjorn3 May 11, 2024
f437815
Compile for x86_64 on macOS even with an arm64 host
bjorn3 May 11, 2024
8cf40c4
Don't attempt to polymorphize statics
bjorn3 May 11, 2024
906db02
Avoid CValue::const_val for discriminants
bjorn3 May 11, 2024
9e4e805
Avoid ICE on transmuting invalid bools
bjorn3 May 11, 2024
9ee010c
Try to workaround gha issue with the caching action
bjorn3 May 11, 2024
50b3427
Split cgus into todo and done before the main module codegen loop
bjorn3 May 11, 2024
a167142
Translate MIR to clif ir in parallel with parallel rustc
bjorn3 May 11, 2024
7b50189
add the `llvm.x86.sse42.crc32.32.32` intrinsic (#1488)
folkertdev May 11, 2024
e7b6662
support crc32 with 8-bit and 16-bit inputs, and add crc64 support
folkertdev May 11, 2024
4a4535a
add `llvm.x86.avx2.permd` intrinsic
folkertdev May 11, 2024
893ba53
Merge pull request #1491 from folkertdev/add-llvm-avx2-permd
bjorn3 May 11, 2024
1a2c489
Merge pull request #1489 from rust-lang/parallel_rustc
bjorn3 May 11, 2024
9059a74
test x86 crc intrinsics
folkertdev May 11, 2024
2df34f9
Merge pull request #1490 from folkertdev/add-llvm-x86-crc32
bjorn3 May 11, 2024
cfc919f
Use cargo in y.sh
bjorn3 May 12, 2024
6db2752
Significantly reduce check cfg warnings
bjorn3 May 12, 2024
0627c63
Remove polymorphize calls for statics in a couple more places
bjorn3 May 12, 2024
cba05a7
Support naked functions
bjorn3 May 12, 2024
df88c11
Use the target cpu from the target spec on x86_64 when -Ctarget-cpu i…
bjorn3 May 12, 2024
3270432
Rustup to rustc 1.80.0-nightly (ef0027897 2024-05-12)
bjorn3 May 13, 2024
75f8bdb
Merge commit '3270432f4b0583104c8b9b6f695bf97d6bbf3ac2' into sync_cg_…
bjorn3 May 13, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Add missing arg for the jit.std_example test
  • Loading branch information
bjorn3 committed May 3, 2024
commit 4d6ac059e547b3ff95e4c18ff933207aec8900b5
2 changes: 1 addition & 1 deletion build_system/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ const BASE_SYSROOT_SUITE: &[TestCase] = &[
),
TestCase::build_lib("build.alloc_system", "example/alloc_system.rs", "lib"),
TestCase::build_bin_and_run("aot.alloc_example", "example/alloc_example.rs", &[]),
TestCase::jit_bin("jit.std_example", "example/std_example.rs", ""),
TestCase::jit_bin("jit.std_example", "example/std_example.rs", "arg"),
TestCase::build_bin_and_run("aot.std_example", "example/std_example.rs", &["arg"]),
TestCase::build_bin_and_run("aot.dst_field_align", "example/dst-field-align.rs", &[]),
TestCase::build_bin_and_run(
Expand Down