repo.or.cz
/
gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fortran: Fix PR 47485.
[gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr80297.C
blob
3b246e4b638e138fd5136550cdaab42576ad4c6c
1
// PR c++/80297
2
// { dg-do compile }
3
4
extern const unsigned long int b;
5
extern const long long int c;
6
7
int
8
foo ()
9
{
10
int a = 809 >> -(b & !c) + b - (long long)(b & !c);
11
return a;
12
}