aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/dse.c
blob: 0728a629dec6bc0843938549ca58d8bee493ab44 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* { dg-additional-options "-fpermissive" } */

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;
}