summaryrefslogtreecommitdiff
path: root/test/Verifier/gcwrite-ptrptr.ll
blob: 1f60becc332712f3236c887a327085f8e3b9b387 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
; RUN: not llvm-as < %s >& /dev/null
; PR1633

%meta = type { i8* }
%obj = type { %meta* }

declare void @llvm.gcwrite(%obj*, %obj*, %obj*)

define void @f() {
entry:
	call void @llvm.gcwrite(%obj* null, %obj* null, %obj* null)
	ret void
}