gcwrite-ptrptr.ll 240 B

12345678910111213
  1. ; RUN: not llvm-as < %s >& /dev/null
  2. ; PR1633
  3. %meta = type { i8* }
  4. %obj = type { %meta* }
  5. declare void @llvm.gcwrite(%obj*, %obj*, %obj*)
  6. define void @f() {
  7. entry:
  8. call void @llvm.gcwrite(%obj* null, %obj* null, %obj* null)
  9. ret void
  10. }