repo.or.cz
/
sdcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Hackfix and re-enable strtoull and wcstoull, see bug #3798.
[sdcc.git]
/
sdcc
/
support
/
regression
/
qct
/
0031-relop.c
blob
643d130f467c0f41d53186c4b44189d97834ff76
1
2
int
3
f
()
4
{
5
return
100
;
6
}
7
8
int
9
main
()
10
{
11
if
(
f
() >
1000
)
12
return
1
;
13
if
(
f
() >=
1000
)
14
return
1
;
15
if
(
1000
<
f
())
16
return
1
;
17
if
(
1000
<=
f
())
18
return
1
;
19
if
(
1000
==
f
())
20
return
1
;
21
if
(
100
!=
f
())
22
return
1
;
23
return
0
;
24
}
25