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

Subversion Repositories openrisc

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc4/] [gcc/] [testsuite/] [obj-c++.dg/] [try-catch-5.mm] - Diff between revs 308 and 519

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

Rev 308 Rev 519
/* 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.