You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
; 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
|
|
}
|