For PR1319: Upgrade to new test harness.
[oota-llvm.git] / test / CodeGen / X86 / i128-ret.ll
1 ; RUN: llvm-as < %s | llc -march=x86-64 | grep {movq 8(%rdi), %rdx}
2 ; RUN: llvm-as < %s | llc -march=x86-64 | grep {movq (%rdi), %rax}
3
4 define i128 @test(i128 *%P) {
5         %A = load i128* %P
6         ret i128 %A
7 }
8