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
/
pr33142.c
blob
7bfc5b584dbd34057727c951f687f3126b513e82
1
int
abs
(
int
j
);
2
extern
void
abort
(
void
);
3
4
__attribute__
((
noinline
))
int
lisp_atan2
(
long
dy
,
long
dx
) {
5
if
(
dx
<=
0
)
6
if
(
dy
>
0
)
7
return
abs
(
dx
) <=
abs
(
dy
);
8
return
0
;
9
}
10
11
int
main
() {
12
volatile
long
dy
=
63
,
dx
= -
77
;
13
if
(
lisp_atan2
(
dy
,
dx
))
14
abort
();
15
return
0
;
16
}