]> git.lizzy.rs Git - rust.git/blob - src/test/codegen/panic-abort-windows.rs
Enable emission of alignment attrs for pointer params
[rust.git] / src / test / codegen / panic-abort-windows.rs
1 // Copyright 2015 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 // ignore-tidy-linelength
12
13 // This test is for *-windows-msvc only.
14 // ignore-android
15 // ignore-bitrig
16 // ignore-cloudabi
17 // ignore-dragonfly
18 // ignore-emscripten
19 // ignore-freebsd
20 // ignore-haiku
21 // ignore-ios
22 // ignore-linux
23 // ignore-macos
24 // ignore-netbsd
25 // ignore-openbsd
26 // ignore-solaris
27
28 // compile-flags: -C no-prepopulate-passes -C panic=abort -O
29
30 #![crate_type = "lib"]
31
32 // CHECK: Function Attrs: nounwind uwtable
33 // CHECK-NEXT: define void @normal_uwtable()
34 #[no_mangle]
35 pub fn normal_uwtable() {
36 }
37
38 // CHECK: Function Attrs: nounwind uwtable
39 // CHECK-NEXT: define void @extern_uwtable()
40 #[no_mangle]
41 pub extern fn extern_uwtable() {
42 }