[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / CodeGen / AArch64 / arm64-collect-loh-str.ll
blobacc0df12a94e8403c5f9d47986e68630bc62b7ab
1 ; RUN: llc -o - %s -mtriple=arm64-apple-ios -O2 | FileCheck %s
2 ; RUN: llc -o - %s -mtriple=arm64_32-apple-ios -O2 | FileCheck %s
3 ; Test case for <rdar://problem/15942912>.
4 ; AdrpAddStr cannot be used when the store uses same
5 ; register as address and value. Indeed, the related
6 ; if applied, may completely remove the definition or
7 ; at least provide a wrong one (with the offset folded
8 ; into the definition).
10 %struct.anon = type { ptr, ptr }
12 @pptp_wan_head = internal global %struct.anon zeroinitializer, align 8
14 ; CHECK-LABEL: _pptp_wan_init
15 ; CHECK: ret
16 ; CHECK-NOT: AdrpAddStr
17 define i32 @pptp_wan_init() {
18 entry:
19   store ptr null, ptr @pptp_wan_head, align 8
20   store ptr @pptp_wan_head, ptr getelementptr inbounds (%struct.anon, ptr @pptp_wan_head, i64 0, i32 1), align 8
21   ret i32 0