Convert more tests to avoid llvm-as.
[oota-llvm.git] / test / CodeGen / X86 / i128-ret.ll
1 ; RUN: llc < %s -march=x86-64 | grep {movq      8(%rdi), %rdx}
2 ; RUN: llc < %s -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