repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.target
/
ia64
/
float80-2.c
blob
346daa7bab2d68d1f733133f22838ff0836d0b39
1
/* Bug 14610 */
2
/* { dg-do run } */
3
/* { dg-options "-minline-int-divide-max-throughput" } */
4
5
extern
void
abort
(
void
);
6
volatile
int
j
=
30
;
7
8
int
main
(
void
)
9
{
10
if
(
29
%
j
!=
29
)
abort
();
11
if
(
30
%
j
!=
0
)
abort
();
12
return
0
;
13
}