[X86] Update test/CodeGen/X86/avg.ll with the help of update_llc_test_checks.py....
[oota-llvm.git] / test / Verifier / gcread-ptrptr.ll
1 ; RUN: not llvm-as < %s >& /dev/null
2 ; PR1633
3
4 %meta = type { i8* }
5 %obj = type { %meta* }
6
7 declare %obj* @llvm.gcread(%obj*, %obj*)
8
9 define %obj* @f() {
10 entry:
11         %x = call %obj* @llvm.gcread(%obj* null, %obj* null)
12         ret %obj* %x
13 }