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.target/i386/mpx/hard-reg-1-nov.c (mpx_test): Use "esp"
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
20010604-1.c
blob
e0deaf524f0766588c1275cc55acad53a168b246
1
#include <stdbool.h>
2
3
int
f
(
int
a
,
int
b
,
int
c
,
_Bool d
,
_Bool e
,
_Bool f
,
char
g
)
4
{
5
if
(
g
!=
1
||
d
!=
true
||
e
!=
true
||
f
!=
true
)
abort
();
6
return
a
+
b
+
c
;
7
}
8
9
int
main
(
void
)
10
{
11
if
(
f
(
1
,
2
, -
3
,
true
,
true
,
true
,
'
\001
'
))
12
abort
();
13
exit
(
0
);
14
}