blob: ea07a4e83d39d9aec2248b3597f37b1af8a03638 [file] [log] [blame]
/* APPLE LOCAL file radar 6351990 */
/* { dg-options "-mmacosx-version-min=10.6 -m32 -fobjc-abi-version=2" { target *-*-darwin* } } */
/* { dg-do compile { target *-*-darwin* } } */
@protocol PROTO
@end
@protocol PROTO1
@end
@protocol PROTO2
@end
__attribute__((objc_root_class)) @interface INTF <PROTO, PROTO1, PROTO2> @end
@implementation INTF @end
int main()
{
return (long) @protocol(PROTO); + (long) @protocol(PROTO1);
}
/* { dg-final { scan-assembler "l_OBJC_LABEL_PROTOCOL_\\\$_PROTO:\n\t.long\tl_OBJC_PROTOCOL_\\\$_PROTO" } } */
/* { dg-final { scan-assembler "l_OBJC_PROTOCOL_REFERENCE_\\\$_PROTO:\n\t.long\tl_OBJC_PROTOCOL_\\\$_PROTO" } } */