[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / Thumb2 / v8_IT_1.ll
blob1f9e006ab8ed1896338f64355824e77cba85c5ed
1 ; RUN: llc < %s -mtriple=thumbv8 -mattr=+neon | FileCheck %s
2 ; RUN: llc < %s -mtriple=thumbv7 -mattr=+neon -arm-restrict-it | FileCheck %s
4 ;CHECK-LABEL: select_s_v_v:
5 ;CHECK-NOT: it
6 ;CHECK: bx
7 define <16 x i8> @select_s_v_v(i32 %avail, ptr %bar) {
8 entry:
9   %vld1 = call <16 x i8> @llvm.arm.neon.vld1.v16i8.p0(ptr %bar, i32 1)
10   %and = and i32 %avail, 1
11   %tobool = icmp eq i32 %and, 0
12   %vld1. = select i1 %tobool, <16 x i8> %vld1, <16 x i8> zeroinitializer
13   ret <16 x i8> %vld1.
16 declare <16 x i8> @llvm.arm.neon.vld1.v16i8.p0(ptr , i32 )