Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
rust
/
compile
/
inline_asm_nop.rs
blob: ba21d024079db8863e3d7978eb77e9abd2bb7d5d [
file
] [
log
] [
blame
]
#![
feature
(
rustc_attrs
)]
#[
rustc_builtin_macro
]
macro_rules
!
asm
{
()
=>
{}
}
fn
main
()
{
unsafe
{
asm
!(
"nop"
);
asm
!(
"nop"
,);
}
}