Fix typo.
[oota-llvm.git] / test / CodeGen / PowerPC / asm-dialect.ll
1 ; RUN: llc < %s -mtriple=powerpc-unknown-linux-gnu | FileCheck %s
2 ; RUN: llc < %s -mtriple=powerpc64-unknown-linux-gnu | FileCheck %s
3 ; RUN: llc < %s -mtriple=powerpc-apple-darwin | FileCheck %s
4 ; RUN: llc < %s -mtriple=powerpc64-apple-darwin | FileCheck %s
5
6 ; This test verifies that we choose "assembler variant 1" (which GCC
7 ; uses for "new-style mnemonics" as opposed to POWER mnemonics) when
8 ; processing multi-variant inline asm statements, on all subtargets.
9
10 ; CHECK: subfe
11 ; CHECK-NOT: sfe
12
13 define i32 @test(i32 %in1, i32 %in2) {
14 entry:
15   %0 = tail call i32 asm "$(sfe$|subfe$) $0,$1,$2", "=r,r,r"(i32 %in1, i32 %in2)
16   ret i32 %0
17 }
18