llvm-project/llvm/test/CodeGen/X86/no-prolog-kill.ll
Nikita Popov 2f448bf509 [X86] Migrate tests to use opaque pointers (NFC)
Test updates were performed using:
https://gist.github.com/nikic/98357b71fd67756b0f064c9517b62a34

These are only the test updates where the test passed without
further modification (which is almost all of them, as the backend
is largely pointer-type agnostic).
2022-06-22 14:38:25 +02:00

22 lines
643 B
LLVM

; RUN: llc -verify-machineinstrs -o - %s | FileCheck %s
target triple = "x86_64--"
; This function gets a AL live-in and at same time saves+restores RAX. We must
; not add a kill flag to the "PUSHQ %rax" or the machine verifier will complain.
; CHECK-LABEL: test:
; CHECK: pushq %rax
; CHECK: testb %al, %al
; CHECK: je .LBB
define void @test(i64 %a, ptr %b, ...) {
entry:
%bar = alloca i8
call void @llvm.va_start(ptr %bar)
call void @llvm.eh.unwind.init()
call void @llvm.eh.return.i64(i64 %a, ptr %b)
unreachable
}
declare void @llvm.eh.return.i64(i64, ptr)
declare void @llvm.eh.unwind.init()
declare void @llvm.va_start(ptr)