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
PR middle-end/30262
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20011114-1.c
blob
9746c1e1d6fa4e50355cb2999c2ad7759b4ebce9
1
char
foo
(
char
bar
[])
2
{
3
return
bar
[
1
];
4
}
5
extern
char
foo
(
char
*);
6
int
main
(
void
)
7
{
8
if
(
foo
(
"xy"
) !=
'y'
)
9
abort
();
10
exit
(
0
);
11
}