• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
2; RUN: opt < %s -instcombine -S | FileCheck %s
3
4define <vscale x 2 x i1> @sge(<vscale x 2 x i8> %x) {
5; CHECK-LABEL: @sge(
6; CHECK-NEXT:    [[CMP:%.*]] = icmp sge <vscale x 2 x i8> [[X:%.*]], zeroinitializer
7; CHECK-NEXT:    ret <vscale x 2 x i1> [[CMP]]
8;
9  %cmp = icmp sge <vscale x 2 x i8> %x, zeroinitializer
10  ret <vscale x 2 x i1> %cmp
11}
12