brintos

brintos / llvm-project-archived public Read only

0
0
Text · 295 B · cc92a97 Raw
12 lines · plain
1; RUN: llc < %s -mtriple=arm-apple-darwin -mattr=+v6 | FileCheck %s2 3; rev inline assembly should be preserved as-is.4 5define i32 @t1(i32 %x) nounwind {6; CHECK-LABEL: t1:7; CHECK: InlineAsm8; CHECK: rev9  %asmtmp = tail call i32 asm "rev $0, $1\0A", "=l,l"(i32 %x) nounwind10  ret i32 %asmtmp11}12