blob: 720ba926eaa09a78680082b4a51becfacc42734a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/* PR middle-end/31448, this used to ICE during expand because
reduce_to_bit_field_precision was not ready to handle constants. */
typedef struct _st {
int iIndex : 24;
int iIndex1 : 24;
} st;
st *next;
void g(void)
{
st *next = 0;
int nIndx;
const static int constreg[] = { 0,};
nIndx = 0;
next->iIndex = constreg[nIndx];
}
void f(void)
{
int nIndx;
const static int constreg[] = { 0xFEFEFEFE,};
nIndx = 0;
next->iIndex = constreg[nIndx];
next->iIndex1 = constreg[nIndx];
}
int main(void)
{
st a;
next = &a;
f();
if (next->iIndex != 0xFFFEFEFE)
__builtin_abort ();
if (next->iIndex1 != 0xFFFEFEFE)
__builtin_abort ();
return 0;
}
|