aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/tree-ssa/modref-dse-6.c
blob: d1e45a893adb6ee99792d373e497f062c42902e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* { dg-do compile } */
/* { dg-options "-O2 -fdump-tree-optimized"  } */
int
main()
{
  int a,b;
  __attribute__ ((noinline))
  void kill_me()
  {
    a=1234;
    b=2234;
  }
  a=0;
  b=1234;
  __attribute__ ((noinline))
  int reta()
  {
    return a;
  }
  return reta();
}
/* { dg-final { scan-tree-dump-not "kill_me" "optimized" } } */
/* { dg-final { scan-tree-dump-not "1234" "optimized" } } */