blob: ce01bdb489abdf7f846163a812f3c089f44a5fb2 [file] [log] [blame]
Shih-wei Liaoea285162010-06-04 12:34:56 -07001// 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}