Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / SPIRV / hlsl-intrinsics / fmax.ll
blob159d4ac19c8cc886c19e9dae0b8c31e0c6203024
1 ; RUN: llc -O0 -mtriple=spirv-unknown-unknown %s -o - | FileCheck %s
2 ; RUN: %if spirv-tools %{ llc -O0 -mtriple=spirv-unknown-unknown %s -o - -filetype=obj | spirv-val %}
3 ; CHECK: OpExtInstImport "GLSL.std.450"
5 define noundef half @test_fmax_half(half noundef %a, half noundef %b) {
6 entry:
7 ; CHECK: %[[#]] = OpExtInst %[[#]] %[[#]] NMax %[[#]] %[[#]]
8   %0 = call half @llvm.maxnum.f16(half %a, half %b)
9   ret half %0
12 define noundef float @test_fmax_float(float noundef %a, float noundef %b) {
13 entry:
14 ; CHECK: %[[#]] = OpExtInst %[[#]] %[[#]] NMax %[[#]] %[[#]]
15   %0 = call float @llvm.maxnum.f32(float %a, float %b)
16   ret float %0
19 define noundef double @test_fmax_double(double noundef %a, double noundef %b) {
20 entry:
21 ; CHECK: %[[#]] = OpExtInst %[[#]] %[[#]] NMax %[[#]] %[[#]]
22   %0 = call double @llvm.maxnum.f64(double %a, double %b)
23   ret double %0
26 declare half @llvm.maxnum.f16(half, half)
27 declare float @llvm.maxnum.f32(float, float)
28 declare double @llvm.maxnum.f64(double, double)