• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1; RUN: not llvm-as < %s >& /dev/null
2
3	%list = type { i32, %list* }
4
5; This usage is invalid now; instead, objects must be bitcast to i8* for input
6; to the gc intrinsics.
7declare void @llvm.gcwrite(%list*, %list*, %list**)
8
9define %list* @cons(i32 %hd, %list* %tl) gc "example" {
10	%tmp = call i8* @gcalloc(i32 bitcast(%list* getelementptr(%list* null, i32 1) to i32))
11	%cell = bitcast i8* %tmp to %list*
12
13	%hd.ptr = getelementptr %list* %cell, i32 0, i32 0
14	store i32 %hd, i32* %hd.ptr
15
16	%tl.ptr = getelementptr %list* %cell, i32 0, i32 0
17	call void @llvm.gcwrite(%list* %tl, %list* %cell, %list** %tl.ptr)
18
19	ret %cell.2
20}
21
22declare i8* @gcalloc(i32)
23