mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-14 13:07:31 +00:00
e1433f24cf
function with GC. This will catch the error when the inliner inlines a function with GC into a caller with no GC. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@45350 91177308-0d34-0410-b5e6-96231b3b80d8
12 lines
216 B
LLVM
12 lines
216 B
LLVM
; RUN: llvm-as < %s | llc
|
|
|
|
%Env = type i8*
|
|
|
|
define void @.main(%Env) gc "shadow-stack" {
|
|
%Root = alloca %Env
|
|
call void @llvm.gcroot( %Env* %Root, %Env null )
|
|
unreachable
|
|
}
|
|
|
|
declare void @llvm.gcroot(%Env*, %Env)
|