bjorn3
242b261585
Don't run should-fail rustc tests
...
These are expected to panic inside compiletest which fails when
compiletest is compiled with panic=abort.
2024-04-06 13:42:53 +00:00
bjorn3
d9f29fa018
Rustfmt all scripts
2024-03-31 09:13:11 +00:00
bjorn3
09fae60a86
Fix rustc test suite
2024-03-28 11:38:15 +00:00
bjorn3
34d0f6a1d4
Re-enable fixed rustc test
2024-03-26 11:03:50 +00:00
bjorn3
23868af850
Correctly implement --emit
2024-03-26 10:55:46 +00:00
bjorn3
ad1886a5f0
Fix rustdoc help message when no args are passed
2024-03-26 10:27:19 +00:00
bjorn3
dc6595ddbc
Implement nearbyintf32 and nearbyintf64 and remove two test ignores
2024-03-26 10:18:44 +00:00
bjorn3
d183a5186f
Sync from rust 5f2c7d2bfd
2024-03-26 09:50:48 +00:00
Matthias Krüger
22e4175bd6
Rollup merge of #123034 - bjorn3:test_ignores, r=compiler-errors
...
Add a bunch of needs-unwind annotations to tests
To filter out tests that fail with cg_clif due to missing panic=unwind support.
2024-03-25 17:05:36 +01:00
bjorn3
49777c3bfa
Add needs-unwind for proc macro tests
...
Rustc gives a warning when compiling proc macros with panic=abort.
2024-03-25 15:02:55 +00:00
bjorn3
654ce59f70
Remove ignore for fixed rustc test
2024-03-25 14:41:19 +00:00
bjorn3
187decaf18
Fix rustc test suite
2024-03-25 14:29:11 +00:00
bjorn3
c53025b45d
Add needs-unwind annotations to a couple of tests
2024-03-25 14:19:07 +00:00
Michael Goulet
4609a48d6a
Add async-closures/once.rs back to cranelift tests
2024-03-24 21:42:32 -04:00
bjorn3
b64079d631
Re-enable rmake.rs tests as a compiletest bug has been fixed
2024-03-18 14:08:59 +00:00
bjorn3
4b61629951
Merge commit '4cf4ffc6ba514f171b3f52d1c731063e4fc45be3' into sync_cg_clif-2024-03-16
2024-03-16 17:23:11 +00:00
bjorn3
4cf4ffc6ba
Fix rustc test suite
2024-03-16 16:30:08 +00:00
bjorn3
e18201deca
Fix rustc test suite
2024-03-09 17:35:49 +00:00
bjorn3
5ec45d3d7a
Merge commit '54cbb6e7531f95e086d5c3dd0d5e73bfbe3545ba' into sync_cg_clif-2024-03-08
2024-03-08 20:41:29 +00:00
bjorn3
4976aa5216
Workaround a couple of bugs in rustc's test suite
2024-03-08 19:02:56 +00:00
bjorn3
8fb0fbef62
Fix rustc test suite
2024-02-20 21:57:28 +00:00
bjorn3
c7a50c2636
Adapt filtering of rustc tests for upstream changes
2024-02-20 17:44:00 +00:00
bjorn3
e4584e84d9
Re-enable fixed rustc tests
2024-02-15 11:51:43 +00:00
bjorn3
35b431884f
Disable test broken due to upstream bug
2024-02-15 10:21:06 +00:00
bjorn3
0cfbc47b9a
Merge commit '6d355f6844323db03bfd608899613e363e701951' into sync_cg_clif-2023-12-31
2023-12-31 13:29:53 +00:00
bjorn3
c55aaa55a7
Remove no longer needed config option from setup_rust_fork.sh
2023-12-31 12:39:20 +00:00
bjorn3
02183f79e4
Suppress default config change warnings
2023-12-31 12:22:38 +00:00
bjorn3
d58de3ea81
Suppress progress notifications for all git commands
2023-12-31 11:53:42 +00:00
bjorn3
7325d0de63
Merge commit '26c02eb2904da9a53d2220d4f3069b19a3c81d3d' into sync_cg_clif-2023-12-24
2023-12-24 14:35:19 +00:00
bjorn3
289a274036
Disable a rustc test that depends on -Cpanic=unwind
2023-12-22 11:58:54 +00:00
bjorn3
e935766d57
Ignore a rustc test that needs LTO support
2023-12-22 11:37:25 +00:00
bjorn3
dab8395deb
Implement simd_masked_store
2023-12-19 19:04:40 +00:00
bjorn3
a4be90ed16
Merge commit '3a9bf729322fb5035518f99b9d76a742bf7c124e' into sync_cg_clif-2023-12-19
2023-12-19 12:46:39 +00:00
bjorn3
973dd562e8
fix computing the offset of an unsized field in a packed struct
...
cc rust-lang/rust#118540
Fixes rust-lang/rustc_codegen_cranelift#1435
2023-12-18 18:12:29 +00:00
bjorn3
1ab05b6cbe
fix dynamic size/align computation logic for packed types with dyn trait tail
...
cc rust-lang/rust#118538
2023-12-18 16:13:54 +00:00
bjorn3
7ec47d1290
Fix rustc test suite
2023-12-12 12:47:28 +00:00
bjorn3
3ff8e7bd7c
Fix rustc test suite
2023-12-07 18:23:39 +00:00
bors
400cd47c28
Auto merge of #118279 - bjorn3:sync_cg_clif-2023-11-25, r=bjorn3
...
Subtree sync for rustc_codegen_cranelift
The main highlights this time are implementing a bunch of new vendor intrinsics and fixing some existing ones. And fixing polymorphization for coroutines.
r? `@ghost`
`@rustbot` label +A-codegen +A-cranelift +T-compiler
2023-11-25 13:08:29 +00:00
bjorn3
1988cf4a18
Merge commit '710c67909d034e1c663174a016ca82b95c2d6c12' into sync_cg_clif-2023-11-25
2023-11-25 10:05:52 +00:00
David Tolnay
abf08329bb
Replace option.map(cond) == Some(true)
with option.is_some_and(cond)
2023-11-24 09:14:09 -08:00
bjorn3
dfc669b74c
Merge commit 'def04540a4e2541b995195c752c751295606a388' into sync_cg_clif-2023-11-16
2023-11-16 21:15:07 +00:00
bjorn3
d49fd9f877
Merge commit 'c84d1871dc4456539b7b578830268ab3539915d0' into sync_cg_clif-2023-11-10
2023-11-10 11:30:51 +00:00
Nicholas Nethercote
8eca01f4b6
Remove support for compiler plugins.
...
They've been deprecated for four years.
This commit includes the following changes.
- It eliminates the `rustc_plugin_impl` crate.
- It changes the language used for lints in
`compiler/rustc_driver_impl/src/lib.rs` and
`compiler/rustc_lint/src/context.rs`. External lints are now called
"loaded" lints, rather than "plugins" to avoid confusion with the old
plugins. This only has a tiny effect on the output of `-W help`.
- E0457 and E0498 are no longer used.
- E0463 is narrowed, now only relating to unfound crates, not plugins.
- The `plugin` feature was moved from "active" to "removed".
- It removes the entire plugins chapter from the unstable book.
- It removes quite a few tests, mostly all of those in
`tests/ui-fulldeps/plugin/`.
Closes #29597 .
2023-11-04 08:50:46 +11:00
bjorn3
41dcb52153
Merge commit 'dde58803fd6cbb270c7a437f36a8a3a29fbef679' into sync_cg_clif-2023-10-29
2023-10-29 20:30:50 +00:00
bjorn3
e472b5573a
Merge commit 'c07d1e2f88cb3b1a0604ae8f18b478c1aeb7a7fa' into sync_cg_clif-2023-10-21
2023-10-21 19:54:51 +00:00
Oli Scherer
8e264ab07a
s/Generator/Coroutine/
2023-10-20 21:10:38 +00:00
bjorn3
5d85a24442
Merge commit '81dc066758ec150b43822d4a0c84aae20fe10f40' into sync_cg_clif-2023-10-09
2023-10-09 08:52:46 +00:00
bors
f04620a508
Auto merge of #115898 - onur-ozkan:config-change-tracking, r=Mark-Simulacrum
...
bootstrap major change detection implementation
The use of `changelog-seen` and `bootstrap/CHANGELOG.md` has not been functional in any way for many years. We often do major/breaking changes but never update the changelog file or the `changelog-seen`. This is an alternative method for tracking major or breaking changes and informing developers when such changes occur.
Example output when bootstrap detects a major change:
![image](https://github.com/rust-lang/rust/assets/39852038/ee802dfa-a02b-488b-a433-f853ce079b8a )
2023-10-02 07:41:52 +00:00
onur-ozkan
2860a89cb1
implement major change tracking for the bootstrap configuration
...
Signed-off-by: onur-ozkan <work@onurozkan.dev>
2023-10-01 16:54:52 +03:00
lcnr
159293cdbf
subst -> instantiate
2023-09-26 09:37:55 +02:00