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
* gcc-interface/trans.c (node_has_volatile_full_access) <N_Identifier>:
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr46856.c
blob
2ec5e8baf9ea5ca1e8764fa2a960cd30e790a7fc
1
struct
data
{
2
int
prio
;
3
signed char
status
;
4
};
5
6
struct
base
{
7
unsigned
_num
;
8
struct
data vec
[
10
];
9
};
10
11
static struct
data
*
ix
(
struct
base
*
base
,
unsigned
i
)
12
{
13
return
&
base
->
vec
[
i
];
14
}
15
16
struct
heap
{
17
struct
base base
;
18
};
19
20
struct
heap
*
heap
;
21
22
void
increase_insn_priority
(
int
*
fld
,
int
amount
)
23
{
24
if
(
ix
(
heap
? &
heap
->
base
:
0
, *
fld
)->
status
>
0
)
25
ix
(
heap
? &
heap
->
base
:
0
, *
fld
)->
prio
+=
amount
;
26
}