blob: a209d8dfec2873e1bb5ea98e21b9dba19c859e62 [file] [log] [blame]
/* APPLE LOCAL file radar 6351990 */
/* { dg-options "-mmacosx-version-min=10.6 -m32 -fobjc-abi-version=2" { target powerpc*-*-darwin* i?86*-*-darwin* } } */
/* { dg-options "-fobjc-abi-version=2" { target arm*-*-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_PROTOCOL_\\\$_PROTO1:" } } */
/* { dg-final { scan-assembler "l_OBJC_PROTOCOL_\\\$_PROTO2:" } } */