1 ; RUN: llc -march=hexagon -mcpu=hexagonv5 < %s | FileCheck %s
2 ; Check that we generate floating point compare in V5
4 ; CHECK: p{{[0-2]+}} = sfcmp.{{.}}
6 define i32 @foo(float %y) nounwind {
8 %retval = alloca i32, align 4
9 %y.addr = alloca float, align 4
10 store float %y, ptr %y.addr, align 4
11 %0 = load float, ptr %y.addr, align 4
12 %cmp = fcmp ogt float %0, 0x406AD7EFA0000000
13 br i1 %cmp, label %if.then, label %if.else
15 if.then: ; preds = %entry
16 store i32 1, ptr %retval
19 if.else: ; preds = %entry
20 store i32 2, ptr %retval
23 return: ; preds = %if.else, %if.then
24 %1 = load i32, ptr %retval
28 define i32 @main() nounwind {
30 %retval = alloca i32, align 4
31 %a = alloca float, align 4
32 store i32 0, ptr %retval
33 store float 0x40012E0A00000000, ptr %a, align 4
34 %0 = load float, ptr %a, align 4
35 %call = call i32 @foo(float %0)