URL
https://opencores.org/ocsvn/scarts/scarts/trunk
Subversion Repositories scarts
[/] [scarts/] [trunk/] [toolchain/] [scarts-gcc/] [gcc-4.1.1/] [gcc/] [testsuite/] [g++.old-deja/] [g++.mike/] [net42.C] - Rev 12
Compare with Previous | Blame | View Log
// { dg-do assemble }
typedef void (*__sighandler_t)(int);
struct sigaction {
__sighandler_t sa_handler;
};
struct task_struct {
struct sigaction sigaction[32];
};
void
get_stat() {
struct task_struct ** p = 0;
unsigned long bit = 1;
unsigned long sigignore = 0;
int i = 0;
switch((__SIZE_TYPE__) (*p)->sigaction[i].sa_handler)
{
case 1:
sigignore |= bit;
break;
}
}