[ARM] Enable shrink-wrapping by default.
[oota-llvm.git] / test / CodeGen / ARM / setcc-type-mismatch.ll
1 ; RUN: llc -mtriple=armv7-linux-gnueabihf %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: vceq.i32 [[CMP128:q[0-9]+]], {{q[0-9]+}}, {{q[0-9]+}}
6 ; CHECK: vmovn.i32 {{d[0-9]+}}, [[CMP128]]
7
8   %tst = icmp eq <4 x i22> %l, %r
9   store <4 x i1> %tst, <4 x i1>* %addr
10   ret void
11 }