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
PR c++/82069 - ICE with lambda in template
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr77309.c
blob
5bdbc0a0b83abd929f4498012c57da973090d4e3
1
/* { dg-do run } */
2
3
int
a
,
b
;
4
5
int
main
()
6
{
7
long
c
=
1
% (
2
^
b
);
8
c
= -
c
& ~(~(
b
^ ~
b
) ||
a
);
9
10
if
(
c
>=
0
)
11
__builtin_abort
();
12
13
return
0
;
14
}