AArch64/ARM64: move ARM64 into AArch64's place
[oota-llvm.git] / test / CodeGen / AArch64 / arm64-dagcombiner-dead-indexed-load.ll
1 ; RUN: llc -mcpu=cyclone < %s | FileCheck %s
2
3 target datalayout = "e-i64:64-n32:64-S128"
4 target triple = "arm64-apple-ios"
5
6 %"struct.SU" = type { i32, %"struct.SU"*, i32*, i32, i32, %"struct.BO", i32, [5 x i8] }
7 %"struct.BO" = type { %"struct.RE" }
8
9 %"struct.RE" = type { i32, i32, i32, i32 }
10
11 ; This is a read-modify-write of some bifields combined into an i48.  It gets
12 ; legalized into i32 and i16 accesses.  Only a single store of zero to the low
13 ; i32 part should be live.
14
15 ; CHECK-LABEL: test:
16 ; CHECK-NOT: ldr
17 ; CHECK: str wzr
18 ; CHECK-NOT: str
19 define void @test(%"struct.SU"* nocapture %su) {
20 entry:
21   %r1 = getelementptr inbounds %"struct.SU"* %su, i64 1, i32 5
22   %r2 = bitcast %"struct.BO"* %r1 to i48*
23   %r3 = load i48* %r2, align 8
24   %r4 = and i48 %r3, -4294967296
25   %r5 = or i48 0, %r4
26   store i48 %r5, i48* %r2, align 8
27
28   ret void
29 }