bolt/deps/llvm-18.1.8/llvm/test/CodeGen/X86/i128-ret.ll

11 lines
257 B
LLVM
Raw Normal View History

2025-02-14 19:21:04 +01:00
; 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(ptr%P) {
%A = load i128, ptr %P
ret i128 %A
}