[X86] combineTargetShuffle - commute VPERMV3 shuffles so any load is on the RHS
[llvm-project.git] / llvm / test / CodeGen / SystemZ / pr42512.ll
blob3131d69949ac5d86a0b594f61780761d3ab4e33d
1 ; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
2 ; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
4 define i8 @test(i8 %x) {
5 ; CHECK-LABEL: test:
6 ; CHECK:       # %bb.0:
7 ; CHECK-NEXT:    slgfi %r0, 1
8 ; CHECK-NEXT:    ipm %r0
9 ; CHECK-NEXT:    afi %r0, -536870912
10 ; CHECK-NEXT:    srl %r0, 31
11 ; CHECK-NEXT:    ar %r2, %r0
12 ; CHECK-NEXT:    br %r14
13   %usubo = tail call { i64, i1 } @llvm.usub.with.overflow.i64(i64 undef, i64 1)
14   %ov = extractvalue { i64, i1 } %usubo, 1
15   %ovext = zext i1 %ov to i8
16   %ret = add i8 %x, %ovext
17   ret i8 %ret
20 ; Function Attrs: nounwind readnone speculatable
21 declare { i64, i1 } @llvm.usub.with.overflow.i64(i64, i64) #0
23 attributes #0 = { nounwind readnone speculatable }