aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/CodeGen/ARM/bswap-inline-asm.ll
blob: cc92a9710c98a6d15fdc6820d30b1f5991dfdb29 (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: llc < %s -mtriple=arm-apple-darwin -mattr=+v6 | FileCheck %s

; rev inline assembly should be preserved as-is.

define i32 @t1(i32 %x) nounwind {
; CHECK-LABEL: t1:
; CHECK: InlineAsm
; CHECK: rev
  %asmtmp = tail call i32 asm "rev $0, $1\0A", "=l,l"(i32 %x) nounwind
  ret i32 %asmtmp
}