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

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

declare %obj* @llvm.gcread(%obj*, %obj*)

define %obj* @f() {
entry:
	%x = call %obj* @llvm.gcread(%obj* null, %obj* null)
	ret %obj* %x
}