Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / ARM / setcc-type-mismatch.ll
blobe4ac43daa6c92f056b6fd57da7525f67d85b20aa
1 ; RUN: llc -mtriple=armv7-linux-gnueabihf %s -o - | FileCheck %s
3 define void @test_mismatched_setcc(<4 x i22> %l, <4 x i22> %r, ptr %addr) {
4 ; CHECK-LABEL: test_mismatched_setcc:
5 ; CHECK: vceq.i32 [[CMP128:q[0-9]+]], {{q[0-9]+}}, {{q[0-9]+}}
6 ; CHECK: vmovn.i32 {{d[0-9]+}}, [[CMP128]]
8   %tst = icmp eq <4 x i22> %l, %r
9   store <4 x i1> %tst, ptr %addr
10   ret void