Home | History | Annotate | Download | only in CodeGenObjC
      1 // RUN: %clang_cc1 -emit-llvm -o %t %s
      2 
      3 @protocol P @end
      4 
      5 int f0(id<P> d) {
      6   return (d != ((void*) 0));
      7 }
      8