repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
* auto-profile.c (afdo_annotate_cfg): Use update_max_bb_count.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
tree-ssa
/
pointer-reference-alias.C
blob
03acc79635b5ec580a6c96c328e8f07cb0c5e515
1
/* { dg-do compile } */
2
/* { dg-options "-O1 -fdump-tree-optimized" } */
3
4
int f(int *a)
5
{
6
int &b = *a;
7
b = 0;
8
return *a;
9
}
10
11
/* There should be only one dereferencing of a. */
12
/* { dg-final { scan-tree-dump-times "\\*a" 1 "optimized" } } */