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
* tree-loop-distribution.c (struct partition): New field recording
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
20011106-2.c
blob
7f80554faae57e0d200836974b38e8c8f75ec353
1
/* Test the type of a component of a conditional expression between
2
two structures is correct. */
3
/* Origin: Joseph Myers <jsm28@cam.ac.uk>. */
4
5
struct
s
{
char
c
; }
a
,
b
;
6
int
c
;
7
char
x
[
sizeof
((
c
?
a
:
b
).
c
) ==
1
?
1
: -
1
];