* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git] / gcc / testsuite / obj-c++.dg / attributes / proto-attribute-4.mm
blobd2e5f28a1b4abe1cd39998b6e4ffed1e6f4bb173
1 /* Contributed by Nicola Pero <nicola.pero@meta-innovation.com>, December 2010.  */
2 /* { dg-do compile } */
4 /* Test that you get a warning when an unknown protocol attribute is ignored.  */
6 #include <objc/objc.h>
8 __attribute__ ((unknown_attribute))
9 @protocol MyProtocol /* { dg-warning "ignored" } */
10 - (id) new;
11 @end
13 __attribute__ ((unknown_attribute))
14 @protocol MyProtocol2; /* { dg-warning "ignored" } */
16 /* Use the protocols to double-check that no more warnings are
17    generated.  */
19 @interface MyClass <MyProtocol>
20 @end
22 int test (id <MyProtocol2> x)
24   if (@protocol (MyProtocol) == @protocol (MyProtocol2))
25     return 1;
27   if (x)
28     return 2;
30   return 3;