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-3.c
blob
4fd5f98da871681cfebe9c50283c07a09b93ceb8
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
register
_Bool x
14
/* Add register spec for the argv parameter to main. */
15
#if __i386__ || __x86_64__
16
__asm__
(
"%esi"
)
17
#endif
18
;
19
if
(
foo
(
x
,
y
))
20
__builtin_abort
();
21
return
0
;
22
}