Add a triple to switch.ll test.
[oota-llvm.git] / test / CodeGen / X86 / fast-isel-fold-mem.ll
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
4 define 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