]> git.lizzy.rs Git - rust.git/blob - src/test/codegen/mainsubprogram.rs
Emit DW_AT_main_subprogram
[rust.git] / src / test / codegen / mainsubprogram.rs
1 // Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // The minimum LLVM version is set to 3.8, but really this test
12 // depends on a patch that is was committed to upstream LLVM before
13 // 4.0; and also backported to the Rust LLVM fork.
14
15 // ignore-tidy-linelength
16 // ignore-windows
17 // ignore-macos
18 // min-llvm-version 3.8
19
20 // compile-flags: -g -C no-prepopulate-passes
21
22 // CHECK-LABEL: @main
23 // CHECK: {{.*}}DISubprogram{{.*}}name: "main",{{.*}}DIFlagMainSubprogram{{.*}}
24
25 pub fn main() {
26 }