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
* expmed.c (flip_storage_order): Deal with complex modes specially.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
pr35390.c
blob
7103a9b5414a88252ea73ca834e96d4795aaeb3d
1
extern
void
abort
(
void
);
2
3
unsigned int
foo
(
int
n
)
4
{
5
return
~((
unsigned int
)~
n
);
6
}
7
8
int
main
()
9
{
10
if
(
foo
(
0
) !=
0
)
11
abort
();
12
return
0
;
13
}