1 ; RUN: llc -mtriple aarch64-none-linux-gnu -verify-machineinstrs -stop-after=prologepilog < %s | FileCheck %s
3 ; Check that STATEPOINT instruction has an early clobber implicit def for LR.
4 target datalayout = "e-i64:64-f80:128-n8:16:32:64-S128"
5 target triple = "aarch64-unknown-linux-gnu"
7 define void @test() "frame-pointer"="all" gc "statepoint-example" {
9 %safepoint_token = tail call token (i64, i32, ptr, i32, i32, ...) @llvm.experimental.gc.statepoint.p0(i64 0, i32 0, ptr elementtype(void ()) @return_i1, i32 0, i32 0, i32 0, i32 0) ["gc-live" ()]
10 ; CHECK: STATEPOINT 0, 0, 0, @return_i1, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, 2, 0, csr_aarch64_aapcs, implicit-def $sp, implicit-def dead early-clobber $lr
15 declare void @return_i1()
16 declare token @llvm.experimental.gc.statepoint.p0(i64, i32, ptr, i32, i32, ...)