rust/tests/codegen/abi-main-signature-32bit-c-int.rs
Matthew Maurer ee86b1f84c llvm: Allow noundef in codegen tests
LLVM 18 will automatically infer `noundef` in some situations.
Adjust codegen tests to accept this.

See llvm/llvm-project#76553 for why `noundef` is being generated now.
2024-01-02 18:02:17 +00:00

12 lines
305 B
Rust

// Checks the signature of the implicitly generated native main()
// entry point. It must match C's `int main(int, char **)`.
// This test is for targets with 32bit c_int only.
// ignore-msp430
// ignore-avr
fn main() {
}
// CHECK: define{{( hidden| noundef)*}} i32 @main(i32{{( %0)?}}, ptr{{( %1)?}})