AArch64/ARM64: remove AArch64 from tree prior to renaming ARM64.
[oota-llvm.git] / test / CodeGen / ARM64 / fp.ll
1 ; RUN: llc < %s -march=arm64 | FileCheck %s
2
3 define float @t1(i1 %a, float %b, float %c) nounwind {
4 ; CHECK: t1
5 ; CHECK: fcsel  s0, s0, s1, ne
6   %sel = select i1 %a, float %b, float %c
7   ret float %sel
8 }