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
/
torture
/
pr71762-2.c
blob
65047cb4fb34fc968cd0556762e4b821a385c719
1
/* { dg-do run } */
2
3
static
_Bool
4
foo
(
_Bool a
,
_Bool b
)
5
{
6
int
x
=
a
&& !
b
;
7
return
x
!=
0
;
8
}
9
10
int
y
=
1
;
11
int
main
()
12
{
13
_Bool x
[
32
];
14
if
(
foo
(
x
[
1
],
y
))
15
__builtin_abort
();
16
return
0
;
17
}