blob: 1c88b3d9009a1acf047626e6cdf02dc77ff533a4 [file] [log] [blame]
Simon Pilgrimfc4d4b22016-07-19 13:35:11 +00001; RUN: llc < %s -mtriple=arm64-eabi | FileCheck %s
Tim Northover00ed9962014-03-29 10:18:08 +00002
3define 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}