2014-06-13 07:27:57 +08:00
|
|
|
; RUN: llc < %s -mtriple=x86_64-apple-darwin | FileCheck %s
|
2015-02-28 02:32:11 +08:00
|
|
|
; RUN: llc < %s -fast-isel -fast-isel-abort=1 -mtriple=x86_64-apple-darwin | FileCheck %s
|
2014-06-13 07:27:57 +08:00
|
|
|
|
|
|
|
define i64 @fold_load(i64* %a, i64 %b) {
|
|
|
|
; CHECK-LABEL: fold_load
|
|
|
|
; CHECK: addq (%rdi), %rsi
|
|
|
|
; CHECK-NEXT: movq %rsi, %rax
|
2015-02-28 05:17:42 +08:00
|
|
|
%1 = load i64, i64* %a, align 8
|
2014-06-13 07:27:57 +08:00
|
|
|
%2 = add i64 %1, %b
|
|
|
|
ret i64 %2
|
|
|
|
}
|
|
|
|
|