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
Merge reload-branch up to revision 101000
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
ia64-float80-2.c
blob
629312425c2a7e5a068e685f623f365c72e22a30
1
/* Bug 14610 */
2
/* { dg-do run { target ia64-*-* } } */
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
}