URL
https://opencores.org/ocsvn/open8_urisc/open8_urisc/trunk
Subversion Repositories open8_urisc
[/] [open8_urisc/] [trunk/] [gnu/] [binutils/] [ld/] [testsuite/] [ld-elf/] [dl3main.cc] - Rev 88
Go to most recent revision | Compare with Previous | Blame | View Log
#include <stdio.h> #include "dl3header.h" extern void f (void); int main (void) { try { f(); } catch (A a) { if (a.i == 42) printf ("OK\n"); else printf ("BAD1\n"); } catch (...) { printf ("BAD2\n"); } return 0; }
Go to most recent revision | Compare with Previous | Blame | View Log