Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// This test is for *-windows only.
//@ only-windows
//@ compile-flags: -C no-prepopulate-passes -C panic=abort -O
#![crate_type = "lib"]
// CHECK: Function Attrs: nounwind uwtable
// CHECK-NEXT: define void @normal_uwtable()
#[no_mangle]
pub fn normal_uwtable() {}
// CHECK-NEXT: define void @extern_uwtable()
pub extern "C" fn extern_uwtable() {}