bolt/deps/llvm-18.1.8/llvm/test/CodeGen/X86/2009-06-03-Win64SpillXMM.ll
2025-02-14 19:21:04 +01:00

10 lines
318 B
LLVM

; RUN: llc -mcpu=generic -mtriple=x86_64-mingw32 < %s | FileCheck %s
; CHECK: subq $40, %rsp
; CHECK: movaps %xmm8, 16(%rsp)
; CHECK: movaps %xmm7, (%rsp)
define i32 @a() nounwind {
entry:
tail call void asm sideeffect "", "~{xmm7},~{xmm8},~{dirflag},~{fpsr},~{flags}"() nounwind
ret i32 undef
}