1 ; RUN: llc -march=hexagon -O0 < %s | FileCheck %s
4 ; CHECK: mux(p0,r1,##1065353216)
6 define float @danny(i32 %x, float %f) #0 {
7 %t = icmp sgt i32 %x, 0
8 %u = select i1 %t, float %f, float 1.0
13 ; CHECK: mux(p0,##1069547520,r1)
15 define float @sammy(i32 %x, float %f) #0 {
16 %t = icmp sgt i32 %x, 0
17 %u = select i1 %t, float 1.5, float %f
21 attributes #0 = { nounwind "target-cpu"="hexagonv5" }