[OffloadBundler] Compress bundles over 4GB (#122307)
[llvm-project.git] / llvm / test / CodeGen / SPIRV / llvm-intrinsics / maxnum.ll
blobe9254c27ab40427943bae99a94d1bb7cc3a5c9c6
1 ; RUN: llc -verify-machineinstrs -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)