2017-09-28 16:36:08 -05:00
|
|
|
// Checks the signature of the implicitly generated native main()
|
|
|
|
// entry point. It must match C's `int main(int, char **)`.
|
|
|
|
|
2017-09-30 06:48:12 -05:00
|
|
|
// This test is for targets with 16bit c_int only.
|
|
|
|
// ignore-aarch64
|
|
|
|
// ignore-arm
|
|
|
|
// ignore-asmjs
|
|
|
|
// ignore-hexagon
|
|
|
|
// ignore-mips
|
2018-01-25 07:28:17 -06:00
|
|
|
// ignore-mips64
|
2017-09-30 06:48:12 -05:00
|
|
|
// ignore-powerpc
|
2018-03-18 20:34:32 -05:00
|
|
|
// ignore-powerpc64
|
2017-09-30 06:48:12 -05:00
|
|
|
// ignore-s390x
|
|
|
|
// ignore-sparc
|
2018-06-04 06:27:32 -05:00
|
|
|
// ignore-sparc64
|
2017-09-30 06:48:12 -05:00
|
|
|
// ignore-wasm32
|
|
|
|
// ignore-x86
|
|
|
|
// ignore-x86_64
|
|
|
|
// ignore-xcore
|
|
|
|
|
2017-09-28 16:36:08 -05:00
|
|
|
fn main() {
|
|
|
|
}
|
|
|
|
|
2017-09-30 06:48:12 -05:00
|
|
|
// CHECK: define i16 @main(i16, i8**)
|