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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [objc.dg/] [try-catch-4.m] - Diff between revs 154 and 816

Go to most recent revision | Only display areas with differences | Details | Blame | View Log

Rev 154 Rev 816
/* Check that the compiler does not incorrectly complain about
/* Check that the compiler does not incorrectly complain about
   exceptions being caught by previous @catch blocks.  */
   exceptions being caught by previous @catch blocks.  */
/* Author: Ziemowit Laski <zlaski@apple.com> */
/* Author: Ziemowit Laski <zlaski@apple.com> */
 
 
/* { dg-do compile } */
/* { dg-do compile } */
/* { dg-options "-Wall -fobjc-exceptions" } */
/* { dg-options "-Wall -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 (FooException* fe) {
    @catch (FooException* fe) {
    }
    }
    @catch (Exception* e) {
    @catch (Exception* e) {
    }
    }
}
}
 
 
 
 

powered by: WebSVN 2.1.0

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