64ac736ec5
Former-commit-id: f3cc9b82f3e5bd8f0fd3ebc098f789556b44e9cd
11 lines
262 B
LLVM
11 lines
262 B
LLVM
; RUN: llc < %s -mtriple=x86_64-linux | FileCheck %s
|
|
; RUN: llc < %s -mtriple=x86_64-win32 | FileCheck %s
|
|
; CHECK: movq ([[A0:%rdi|%rcx]]), %rax
|
|
; CHECK: movq 8([[A0]]), %rdx
|
|
|
|
define i128 @test(i128 *%P) {
|
|
%A = load i128, i128* %P
|
|
ret i128 %A
|
|
}
|
|
|