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.c-torture/execute/20101011-1.c: Skip on SH.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr44555.c
blob
6ba8e491971dc66b6412eaf0f8ac7a6cb377dc7c
1
struct
a
{
2
char
b
[
100
];
3
};
4
int
foo
(
struct
a
*
a
)
5
{
6
if
(&
a
->
b
)
7
return
1
;
8
return
0
;
9
}
10
extern
void
abort
(
void
);
11
int
main
()
12
{
13
if
(
foo
((
struct
a
*)
0
) !=
0
)
14
abort
();
15
return
0
;
16
}