
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.
7 lines
135 B
Rust
7 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];
|
|
}
|