blob: 3682fc425b5b7f7039e83cd51b2bf8ee1c679a20 [file] [log] [blame]
Gordon Henriksen247902a2007-12-25 02:02:10 +00001; RUN: not llvm-as < %s
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)