aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.mike/net42.C
blob: 178a0bbf5ec29ebbd773cc6fbc03ef2eca491716 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Build don't link:

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((unsigned long) (*p)->sigaction[i].sa_handler)
    {
    case 1:
      sigignore |= bit;
      break;
    }
}