mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 08:44:35 +00:00
70 lines
1.4 KiB
Rust
70 lines
1.4 KiB
Rust
|
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
|
||
|
// file at the top-level directory of this distribution and at
|
||
|
// http://rust-lang.org/COPYRIGHT.
|
||
|
//
|
||
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
||
|
// option. This file may not be copied, modified, or distributed
|
||
|
// except according to those terms.
|
||
|
|
||
|
// ignore-aarch64
|
||
|
// ignore-aarch64_be
|
||
|
// ignore-arm
|
||
|
// ignore-armeb
|
||
|
// ignore-avr
|
||
|
// ignore-bpfel
|
||
|
// ignore-bpfeb
|
||
|
// ignore-hexagon
|
||
|
// ignore-mips
|
||
|
// ignore-mips64
|
||
|
// ignore-msp430
|
||
|
// ignore-powerpc
|
||
|
// ignore-r600
|
||
|
// ignore-amdgcn
|
||
|
// ignore-sparc
|
||
|
// ignore-sparcv9
|
||
|
// ignore-sparcel
|
||
|
// ignore-s390x
|
||
|
// ignore-tce
|
||
|
// ignore-thumb
|
||
|
// ignore-thumbeb
|
||
|
// ignore-xcore
|
||
|
// ignore-nvptx
|
||
|
// ignore-nvptx64
|
||
|
// ignore-le32
|
||
|
// ignore-le64
|
||
|
// ignore-amdil
|
||
|
// ignore-amdil64
|
||
|
// ignore-hsail
|
||
|
// ignore-hsail64
|
||
|
// ignore-spir
|
||
|
// ignore-spir64
|
||
|
// ignore-kalimba
|
||
|
// ignore-shave
|
||
|
// ignore-wasm32
|
||
|
// ignore-wasm64
|
||
|
// ignore-emscripten
|
||
|
// compile-flags: -C no-prepopulate-passes
|
||
|
|
||
|
#![feature(global_asm)]
|
||
|
#![crate_type = "lib"]
|
||
|
|
||
|
// CHECK-LABEL: foo
|
||
|
// CHECK: module asm
|
||
|
// this regex will capture the correct unconditional branch inst.
|
||
|
// CHECK: module asm "{{[[:space:]]+}}jmp baz"
|
||
|
global_asm!(r#"
|
||
|
.global foo
|
||
|
foo:
|
||
|
jmp baz
|
||
|
"#);
|
||
|
|
||
|
extern "C" {
|
||
|
fn foo();
|
||
|
}
|
||
|
|
||
|
// CHECK-LABEL: @baz
|
||
|
#[no_mangle]
|
||
|
pub unsafe extern "C" fn baz() {}
|