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
/
pr107029.C
blob
93c7f28fb4cd64504884cf3954512144d7dfb5c2
1
// PR tree-optimization/107029
2
// { dg-do compile }
3
4
struct S { long long a; int b; };
5
long long S::*a;
6
int S::*b;
7
struct A { void foo (bool, bool); void bar (); int c; };
8
9
void
10
A::foo (bool a, bool b)
11
{
12
c = a || b;
13
}
14
15
void
16
A::bar()
17
{
18
foo (a, b);
19
}