[ARM] More MVE compare vector splat combines for ANDs
[llvm-complete.git] / test / CodeGen / AArch64 / setcc-type-mismatch.ll
blob86817fa4fa406f3f0197baad83f806552b422a76
1 ; RUN: llc -mtriple=aarch64-linux-gnu %s -o - | FileCheck %s
3 define void @test_mismatched_setcc(<4 x i22> %l, <4 x i22> %r, <4 x i1>* %addr) {
4 ; CHECK-LABEL: test_mismatched_setcc:
5 ; CHECK: cmeq [[CMP128:v[0-9]+]].4s, {{v[0-9]+}}.4s, {{v[0-9]+}}.4s
6 ; CHECK: xtn {{v[0-9]+}}.4h, [[CMP128]].4s
8   %tst = icmp eq <4 x i22> %l, %r
9   store <4 x i1> %tst, <4 x i1>* %addr
10   ret void