ee86b1f84c
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.
12 lines
305 B
Rust
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)?}})
|