[ARM] More MVE compare vector splat combines for ANDs
[llvm-complete.git] / test / CodeGen / SystemZ / bswap-08.ll
blobf82b09b37b7a0ab322f4d3412868cf996edac7c4
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(i32* %x, i64* %y) {
8 ; CHECK-LABEL: f1:
9 ; CHECK-NOT: strv
10 ; CHECK: br %r14
11   %a = load i64, i64* %y, align 8
12   %b = tail call i64 @llvm.bswap.i64(i64 %a)
13   %conv = trunc i64 %b to i32
14   store i32 %conv, i32* %x, align 4
15   ret void