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
/
980618-1.c
blob
59db7f28b9cbd7de72604e9193090126de49a511
1
void
func
(
int
,
int
);
2
3
int
main
()
4
{
5
int
x
=
7
;
6
func
(!
x
, !
7
);
7
exit
(
0
);
8
}
9
10
void
func
(
int
x
,
int
y
)
11
{
12
if
(
x
==
y
)
13
return
;
14
else
15
abort
();
16
}