[X86] combineTargetShuffle - commute VPERMV3 shuffles so any load is on the RHS
[llvm-project.git] / llvm / test / CodeGen / SystemZ / bswap-08.ll
blob6594af7229e6721ebc11f30500703d14d2dec5df
1 ; Verify that truncating stores do not use STRV
3 ; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
5 declare i64 @llvm.bswap.i64(i64)
7 define void @f1(ptr %x, ptr %y) {
8 ; CHECK-LABEL: f1:
9 ; CHECK-NOT: strv
10 ; CHECK: br %r14
11   %a = load i64, ptr %y, align 8
12   %b = tail call i64 @llvm.bswap.i64(i64 %a)
13   %conv = trunc i64 %b to i32
14   store i32 %conv, ptr %x, align 4
15   ret void