xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenObjC/2008-10-23-invalid-icmp.m (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
1// RUN: %clang_cc1 -emit-llvm -o %t %s
2
3@protocol P @end
4
5int f0(id<P> d) {
6  return (d != ((void*) 0));
7}
8