blob: d91f91ee7ab68def3f08d7a9563e7c4c12d1fbf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// ignore-tidy-linelength
// ignore-windows
// ignore-macos
// compile-flags: -g -C no-prepopulate-passes
#![feature(start)]
// CHECK-LABEL: @main
// CHECK: {{.*}}DISubprogram{{.*}}name: "start",{{.*}}DIFlagMainSubprogram{{.*}}
#[start]
fn start(_: isize, _: *const *const u8) -> isize {
return 0;
}
|