blob: 277f4283328b623a06457ae9b44a8fcafbb2f582 (
plain)
1
2
3
4
5
6
7
8
|
; RUN: llc < %s -march=x86-64 | grep {movq 8(%rdi), %rdx}
; RUN: llc < %s -march=x86-64 | grep {movq (%rdi), %rax}
define i128 @test(i128 *%P) {
%A = load i128* %P
ret i128 %A
}
|