xref: /llvm-project/llvm/test/CodeGen/X86/i128-ret.ll (revision 2f448bf509432c1a19ec46ab8cbc7353c03c6280)
1; RUN: llc < %s -mtriple=x86_64-linux | FileCheck %s
2; RUN: llc < %s -mtriple=x86_64-win32 | FileCheck %s
3; CHECK: movq ([[A0:%rdi|%rcx]]), %rax
4; CHECK: movq 8([[A0]]), %rdx
5
6define i128 @test(ptr%P) {
7        %A = load i128, ptr %P
8        ret i128 %A
9}
10
11