[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / CodeGen / ARM / 2011-10-26-ExpandUnalignedLoadCrash.ll
blob4463e63085b82cc94591e7bad642b95d74158ed3
1 ; RUN: llc < %s -mcpu=cortex-a9 -mattr=+neon,+neonfp -relocation-model=pic
3 target triple = "armv6-none-linux-gnueabi"
5 define void @sample_test(ptr %.T0348, ptr nocapture %sourceA, ptr nocapture %destValues) {
6 L.entry:
7   %0 = call i32 (...) @get_index(ptr %.T0348, i32 0)
8   %1 = mul i32 %0, 6
9   %2 = getelementptr i8, ptr %destValues, i32 %1
10   %3 = load <3 x i16>, ptr %2, align 1
11   %4 = getelementptr i8, ptr %sourceA, i32 %1
12   %5 = load <3 x i16>, ptr %4, align 1
13   %6 = or <3 x i16> %5, %3
14   store <3 x i16> %6, ptr %2, align 1
15   ret void
18 declare i32 @get_index(...)