mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-26 13:01:27 +03:00
72abf370bb
Long ago, UI tests were divided into "compile" and "run" tests. Later, the compile tests were further subdivided into "check" and "build" tests, to speed up tests that don't need a full build. The same split was never applied to incremental test revisions, so the only way to perform a check build in incremental tests is (confusingly) to use a `cfail` revision and then specify `//@ check-fail` or `//@ check-pass`. This PR makes room for dedicated check-fail and check-pass revisions by renaming the existing `cfail` and `cpass` revisions to `bfail` and `bpass`, since they currently perform a full build.
23 lines
443 B
Rust
23 lines
443 B
Rust
//@ revisions: rpass1 bfail1 rpass3
|
|
//@ needs-asm-support
|
|
//@ only-x86_64
|
|
//@ ignore-backends: gcc
|
|
// Regression test for issue #72386
|
|
// Checks that we don't ICE when switching to an invalid register
|
|
// and back again
|
|
|
|
use std::arch::asm;
|
|
|
|
#[cfg(any(rpass1, rpass3))]
|
|
fn main() {
|
|
unsafe { asm!("nop") }
|
|
}
|
|
|
|
#[cfg(bfail1)]
|
|
fn main() {
|
|
unsafe {
|
|
asm!("nop",out("invalid_reg")_)
|
|
//[bfail1]~^ ERROR invalid register
|
|
}
|
|
}
|