Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / SPIRV / llvm-intrinsics / maxnum.ll
blob7b8c05d9c98edab36475fa9d9f90c005eaa55721
1 ; RUN: llc -O0 -mtriple=spirv64-unknown-unknown %s -o - | FileCheck %s
3 define spir_func float @Test(float %x, float %y) {
4 entry:
5   %0 = call float @llvm.maxnum.f32(float %x, float %y)
6   ret float %0
9 ; CHECK: OpFunction
10 ; CHECK: %[[#x:]] = OpFunctionParameter %[[#]]
11 ; CHECK: %[[#y:]] = OpFunctionParameter %[[#]]
12 ; CHECK: %[[#res:]] = OpExtInst %[[#]] %[[#]] fmax %[[#x]] %[[#y]]
13 ; CHECK: OpReturnValue %[[#res]]
15 declare float @llvm.maxnum.f32(float, float)