[IRBuilder] Add Align argument for CreateMaskedExpandLoad and CreateMaskedCompressSto...
[llvm-project.git] / llvm / test / CodeGen / AArch64 / arm64-sitofp-combine-chains.ll
blob239a04f7d2c7c59abac6794315e6bf50310ea1ba
1 ; RUN: llc < %s -mtriple=arm64-eabi | FileCheck %s
3 ; ARM64ISelLowering.cpp was creating a new (floating-point) load for efficiency
4 ; but not updating chain-successors of the old one. As a result, the two memory
5 ; operations in this function both ended up direct successors to the EntryToken
6 ; and could be reordered.
8 @var = dso_local global i32 0, align 4
10 define dso_local float @foo() {
11 ; CHECK-LABEL: foo:
12   ; Load must come before we clobber @var
13 ; CHECK: adrp x[[VARBASE:[0-9]+]], {{_?var}}
14 ; CHECK: ldr [[SREG:s[0-9]+]], [x[[VARBASE]],
15 ; CHECK: str wzr, [x[[VARBASE]],
17   %val = load i32, ptr @var, align 4
18   store i32 0, ptr @var, align 4
20   %fltval = sitofp i32 %val to float
21   ret float %fltval