mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-01 15:11:24 +00:00
ed2ac7c211
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@126204 91177308-0d34-0410-b5e6-96231b3b80d8
11 lines
256 B
LLVM
11 lines
256 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* %P
|
|
ret i128 %A
|
|
}
|
|
|