repo.or.cz
/
llvm-complete.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fix bugs section.
[llvm-complete.git]
/
test
/
Verifier
/
gcwrite-ptrptr.ll
blob
b1e96c8aa6ea5c239b269677eac673c7f9f2ab69
1
; RUN: not llvm-as < %s
2
; PR1633
3
4
%meta = type { i8* }
5
%obj = type { %meta* }
6
7
declare void @llvm.gcwrite(%obj*, %obj*, %obj*)
8
9
define void @f() {
10
entry:
11
call void @llvm.gcwrite(%obj* null, %obj* null, %obj* null)
12
ret void
13
}