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
/
ipa
/
ipa-bit-cp.c
blob
7b920ca539ac4578d462642cf58077c13248b8ef
1
/* { dg-do run } */
2
/* { dg-options "-fpermissive -O2 -w -fipa-bit-cp" } */
3
static int
4
__attribute__
((
noinline
))
5
test
(
int
a
)
6
{
7
if
(!(
a
&
2
))
8
link_error
();
9
}
10
main
()
11
{
12
test
(
2
);
13
test
(
3
);
14
test
(
6
);
15
return
0
;
16
}