mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00

Pass -Z verify-llvm-ir to tests that rely on it, to make sure they pass regardless of the value of verify-llvm-ir in config.toml. Also remove the 109681.rs test, because it is a duplicat of common-linkage-non-zero-init.rs.
8 lines
135 B
Rust
8 lines
135 B
Rust
//@ compile-flags: -g -Copt-level=0 -Z verify-llvm-ir
|
|
//@ known-bug: #34127
|
|
//@ only-x86_64
|
|
|
|
pub fn main() {
|
|
let _a = [(); 1 << 63];
|
|
}
|