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
/
pr107052.c
blob
88b5213160d17e73608575dc33fd2c08c1351357
1
// { dg-do compile }
2
// { dg-options "-O2 -fdump-tree-evrp" }
3
4
void
link_failure
();
5
void
f
(
int
a
)
6
{
7
a
&=
0x300
;
8
int
b
=
__builtin_popcount
(
a
);
9
if
(
b
>
3
)
10
link_failure
();
11
}
12
13
// { dg-final { scan-tree-dump-not "link_failure" "evrp" } }