aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/ssa-fre-77.c
blob: c2d9239bc1c37a70ffa8d9e9488b7b53958ca988 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-fre1" } */

int foo (int *p, int *q)
{
  int x;
  *p = 1;
  x = *p;
  *q = x;
  return *p;
}

/* { dg-final { scan-tree-dump "return 1;" "fre1" { xfail { ! natural_alignment_32 } } } } */