blob: 277f4283328b623a06457ae9b44a8fcafbb2f582 [file] [log] [blame]
Dan Gohman0a063102009-09-08 23:54:48 +00001; RUN: llc < %s -march=x86-64 | grep {movq 8(%rdi), %rdx}
2; RUN: llc < %s -march=x86-64 | grep {movq (%rdi), %rax}
Dan Gohmanf17a25c2007-07-18 16:29:46 +00003
4define i128 @test(i128 *%P) {
5 %A = load i128* %P
6 ret i128 %A
7}
8