[analyzer] Use the new registration mechanism on the non-path-sensitive-checkers:
[clang.git] / test / CodeGen / 2008-08-25-incompatible-cond-expr.m
blobf285cca094ed9c380973f56bb1adaa8f13b1c9cd
1 // RUN: %clang_cc1 -emit-llvm -o %t %s
3 @protocol P0
4 @end
5 @interface A <P0>
6 @end
8 id f0(int a, id<P0> x, A* p) {
9   return a ? x : p;