blob: d9bddc9c6b3b83c3a9595d311b06443d0f0221f6 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; 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
4define i128 @test(i128 *%P) {
5 %A = load i128* %P
6 ret i128 %A
7}
8