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
Require target lra in gcc.dg/pr108095.c
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr106278.c
blob
ab312b3ecfbe3ba0213b7a33695fe1dca2ec760f
1
/* { dg-do compile } */
2
/* { dg-options "-O2" } */
3
void
__assert_fail
();
4
struct
a
{
5
int
b
;
6
int
c
;
7
int
d
;
8
int
:
2
;
9
};
10
int
e
,
f
;
11
struct
a g
,
i
;
12
const struct
a h
;
13
int
main
() {
14
struct
a j
;
15
g
=
h
;
16
if
(
e
)
17
__assert_fail
();
18
if
(
f
)
19
j
=
h
;
20
i
=
j
;
21
return
0
;
22
}