Sign in
llvm
/
llvm-project
/
2ec91a5ec41c93e79a16ddca02de14b07d593c2c
/
.
/
llvm
/
test
/
CodeGen
/
ARM
/
bswap-inline-asm.ll
blob: 31f9d729cf6e67572ecb759dfe37420c0d8792eb [
file
] [
log
] [
blame
]
; RUN: llc < %s -mtriple=arm-apple-darwin -mattr=+v6 | FileCheck %s
define
i32
@t1
(
i32
%x
)
nounwind
{
; CHECK-LABEL: t1:
; CHECK-NOT: InlineAsm
; CHECK: rev
%asmtmp
=
tail
call
i32
asm
"rev $0, $1\0A"
,
"=l,l"
(
i32
%x
)
nounwind
ret
i32
%asmtmp
}