Home | History | Annotate | Download | only in AArch64
      1 ; RUN: llc -mtriple=aarch64-linux-gnu %s -o - | FileCheck %s
      2 
      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
      7 
      8   %tst = icmp eq <4 x i22> %l, %r
      9   store <4 x i1> %tst, <4 x i1>* %addr
     10   ret void
     11 }
     12