OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [gnu-src/] [gcc-4.2.2/] [gcc/] [testsuite/] [objc.dg/] [try-catch-5.m] - Diff between revs 149 and 154

Only display areas with differences | Details | Blame | View Log

Rev 149 Rev 154
/* Check that the compiler does correctly complain about
/* Check that the compiler does correctly complain about
   exceptions being caught by previous @catch blocks.  */
   exceptions being caught by previous @catch blocks.  */
/* Force the use of NeXT runtime to see that we don't ICE after
/* Force the use of NeXT runtime to see that we don't ICE after
   generating the warning message.  */
   generating the warning message.  */
 
 
/* { dg-do compile } */
/* { dg-do compile } */
/* { dg-options "-Wall -fnext-runtime -fobjc-exceptions" } */
/* { dg-options "-Wall -fnext-runtime -fobjc-exceptions" } */
 
 
@interface Exception
@interface Exception
@end
@end
 
 
@interface FooException : Exception
@interface FooException : Exception
@end
@end
 
 
extern void foo();
extern void foo();
 
 
void test()
void test()
{
{
    @try {
    @try {
        foo();
        foo();
    }
    }
    @catch (Exception* e) {     /* { dg-warning "earlier handler" } */
    @catch (Exception* e) {     /* { dg-warning "earlier handler" } */
    }
    }
    @catch (FooException* fe) { /* { dg-warning "will be caught" } */
    @catch (FooException* fe) { /* { dg-warning "will be caught" } */
    }
    }
}
}
 
 
 
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.