xref: /llvm-project/llvm/test/Transforms/InstSimplify/is_fpclass.ll (revision 593e25ffae4a1d67acf61c485220886ffbb0b3e7)
1; NOTE: Assertions have been autogenerated by utils/update_test_checks.py UTC_ARGS: --version 2
2; RUN: opt < %s -S -passes=instsimplify | FileCheck %s
3
4define <2 x i1> @f() {
5; CHECK-LABEL: define <2 x i1> @f() {
6; CHECK-NEXT:    ret <2 x i1> zeroinitializer
7;
8  %i = call <2 x i1> @llvm.is.fpclass.v2f16(<2 x half> <half 0xH7C00, half 0xH7C00>, i32 3)
9  ret <2 x i1> %i
10}
11
12declare <2 x i1> @llvm.is.fpclass.v2f16(<2 x half>, i32 immarg)
13