diff options
Diffstat (limited to 'tests/codegen/some-global-nonnull.rs')
| -rw-r--r-- | tests/codegen/some-global-nonnull.rs | 25 | 
1 files changed, 0 insertions, 25 deletions
| diff --git a/tests/codegen/some-global-nonnull.rs b/tests/codegen/some-global-nonnull.rs deleted file mode 100644 index bb4d12e1c76..00000000000 --- a/tests/codegen/some-global-nonnull.rs +++ /dev/null @@ -1,25 +0,0 @@ -//@ compile-flags: -Copt-level=3 - -#![crate_type = "lib"] - -// CHECK-LABEL: @test -// CHECK-NEXT: start: -// CHECK-NEXT: tail call void @ext_fn0() -#[no_mangle] -pub fn test() { - test_inner(Some(inner0)); -} - -fn test_inner(f_maybe: Option<fn()>) { - if let Some(f) = f_maybe { - f(); - } -} - -fn inner0() { - unsafe { ext_fn0() }; -} - -extern "C" { - fn ext_fn0(); -} | 
