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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
forwprop-14.c
blob
353af135ddc1415b627815c7af832816dd065472
1
/* { dg-do compile } */
2
/* { dg-options "-O -fdump-tree-optimized" } */
3
4
unsigned int
5
foo
(
unsigned int
eax
)
6
{
7
eax
|=
4
;
8
eax
&=
247
;
9
eax
|=
16
;
10
eax
&=
223
;
11
eax
|=
64
;
12
eax
&=
127
;
13
return
eax
;
14
}
15
16
/* { dg-final { scan-tree-dump-times " & " 1 "optimized" } } */
17
/* { dg-final { scan-tree-dump-times " \\\| " 1 "optimized" } } */