aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/dse.c
blob: 908e6503eb43c6002b787acedc25e85026f3940e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
typedef unsigned long microblaze_reg_t;
struct pt_regs
{
  microblaze_reg_t msr;
  int pt_mode;
};
struct task_struct
{
  void *stack;
};
int
copy_thread (struct task_struct *p)
{
  struct pt_regs *childregs =
    (((struct pt_regs *) ((1 << 13) + ((void *) (p)->stack))) - 1);
  memset (childregs, 0, sizeof (struct pt_regs));
  childregs->pt_mode = 1;
}