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
c++: Fix ICE with #embed/RAW_DATA_CST after list conversion [PR118671]
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
alias-17.c
blob
62ef77622008c8bf611e19a43adc70dd2110a5db
1
/* { dg-do compile } */
2
/* { dg-options "-O -fno-early-inlining -fdump-tree-ccp2" } */
3
4
int
*
p
;
5
int
inline
bar
(
void
) {
return
0
; }
6
int
foo
(
int
x
)
7
{
8
int
i
;
9
int
*
q
;
10
if
(
bar
())
11
q
= &
i
;
12
else
13
q
=
p
;
14
return
*
q
+ *
p
;
15
}
16
17
/* { dg-final { scan-tree-dump-not "NOTE: no flow-sensitive alias info for" "ccp2" } } */