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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
961203-1.c
blob
98908584333d6153862e3792ecec228058bd5995
1
/* The structure is too large for the xstormy16 - won't fit in 16
2
bits. */
3
/* { dg-do assemble } */
4
5
#if __INT_MAX__ >= 2147483647L
6
struct
s
{
7
char
a
[
0x32100000
];
8
int
x
:
30
,
y
:
30
;
9
};
10
11
int
12
main
()
13
{
14
struct
s
*
p
;
15
16
p
= (
struct
s
*)
0
;
17
if
(
p
->
x
==
p
->
y
)
18
exit
(
1
);
19
}
20
#else
21
int
g
;
22
#endif