repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[SimplifyCFG] Rewrite SinkThenElseCodeToEnd
[llvm-core.git]
/
test
/
CodeGen
/
ARM
/
bswap-inline-asm.ll
blob
31f9d729cf6e67572ecb759dfe37420c0d8792eb
1
; RUN: llc < %s -mtriple=arm-apple-darwin -mattr=+v6 | FileCheck %s
2
3
define i32 @t1(i32 %x) nounwind {
4
; CHECK-LABEL: t1:
5
; CHECK-NOT: InlineAsm
6
; CHECK: rev
7
%asmtmp = tail call i32 asm "rev $0, $1\0A", "=l,l"(i32 %x) nounwind
8
ret i32 %asmtmp
9
}