xref: /aosp_15_r20/external/llvm/test/CodeGen/X86/fast-isel-fold-mem.ll (revision 9880d6810fe72a1726cb53787c6711e909410d58)
1; RUN: llc < %s                             -mtriple=x86_64-apple-darwin | FileCheck %s
2; RUN: llc < %s -fast-isel -fast-isel-abort=1 -mtriple=x86_64-apple-darwin | FileCheck %s
3
4define i64 @fold_load(i64* %a, i64 %b) {
5; CHECK-LABEL: fold_load
6; CHECK:       addq  (%rdi), %rsi
7; CHECK-NEXT:  movq  %rsi, %rax
8  %1 = load i64, i64* %a, align 8
9  %2 = add i64 %1, %b
10  ret i64 %2
11}
12
13