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