19 lines
718 B
Rust
19 lines
718 B
Rust
//@ aux-build:wrong_regparm.rs
|
|
//@ compile-flags: --target i686-unknown-linux-gnu -Zregparm=1
|
|
//@ needs-llvm-components: x86
|
|
|
|
//@ revisions:allow_regparm_mismatch allow_no_value error_generated
|
|
//@[allow_regparm_mismatch] compile-flags: -Cunsafe-allow-abi-mismatch=regparm
|
|
//@[allow_no_value] compile-flags: -Cunsafe-allow-abi-mismatch
|
|
//@[error_generated] compile-flags:
|
|
//@[allow_regparm_mismatch] check-pass
|
|
|
|
#![feature(no_core)]
|
|
//[error_generated]~^ ERROR mixing `-Zregparm` will cause an ABI mismatch in crate `incompatible_regparm`
|
|
#![crate_type = "rlib"]
|
|
#![no_core]
|
|
|
|
extern crate wrong_regparm;
|
|
|
|
//[allow_no_value]~? ERROR codegen option `unsafe-allow-abi-mismatch` requires a comma-separated list of strings
|