Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
59159a10
Commit
59159a10
authored
Jul 27, 1999
by
Michael Meissner
Committed by
Michael Meissner
Jul 27, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add clones of fp-cmp-1 for float/long double; Change name of unknown register
From-SVN: r28296
parent
94b82f2b
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
95 additions
and
1 deletions
+95
-1
gcc/testsuite/gcc.c-torture/ChangeLog
+12
-0
gcc/testsuite/gcc.c-torture/execute/ieee/fp-cmp-2.c
+41
-0
gcc/testsuite/gcc.c-torture/execute/ieee/fp-cmp-3.c
+41
-0
gcc/testsuite/gcc.c-torture/noncompile/920507-1.c
+1
-1
No files found.
gcc/testsuite/gcc.c-torture/ChangeLog
View file @
59159a10
1999-07-27 Michael Meissner <meissner@cygnus.com>
* execute/ieee/fp-cmp-2.c: New file, clone from fp-cmp-1.c,
converting double to float.
* execute/ieee/fp-cmp-3.c: New file, clone from fp-cmp-1.c,
converting double to long double.
* noncompile/920507-1.c (x): Rename asm register from fr1 to
unknown_register, since fr1 is a legitimate register on some
machines.
1999-06-23 Nick Clifton <nickc@cygnus.com>
* compile/dll.c: New test case. Check that dll attributes
...
...
gcc/testsuite/gcc.c-torture/execute/ieee/fp-cmp-2.c
0 → 100644
View file @
59159a10
#include <signal.h>
float
nan
=
1
.
0
f
/
0
.
0
f
-
1
.
0
f
/
0
.
0
f
;
float
x
=
1
.
0
f
;
void
leave
()
{
exit
(
0
);
}
main
()
{
#if ! defined (__vax__) && ! defined (_CRAY)
/* Move this line earlier, for architectures (like alpha) that issue
SIGFPE on the first comparisons. */
#ifndef SIGNAL_SUPPRESS
/* Some machines catches a SIGFPE when a NaN is compared.
Let this test succeed o such machines. */
signal
(
SIGFPE
,
leave
);
#endif
/* NaN is an IEEE unordered operand. All these test should be false. */
if
(
nan
==
nan
)
abort
();
if
(
nan
!=
x
)
x
=
1
.
0
;
else
abort
();
if
(
nan
<
x
)
abort
();
if
(
nan
>
x
)
abort
();
if
(
nan
<=
x
)
abort
();
if
(
nan
>=
x
)
abort
();
if
(
nan
==
x
)
abort
();
#endif
exit
(
0
);
}
gcc/testsuite/gcc.c-torture/execute/ieee/fp-cmp-3.c
0 → 100644
View file @
59159a10
#include <signal.h>
long
double
nan
=
1
.
0l
/
0
.
0l
-
1
.
0l
/
0
.
0l
;
long
double
x
=
1
.
0l
;
void
leave
()
{
exit
(
0
);
}
main
()
{
#if ! defined (__vax__) && ! defined (_CRAY)
/* Move this line earlier, for architectures (like alpha) that issue
SIGFPE on the first comparisons. */
#ifndef SIGNAL_SUPPRESS
/* Some machines catches a SIGFPE when a NaN is compared.
Let this test succeed o such machines. */
signal
(
SIGFPE
,
leave
);
#endif
/* NaN is an IEEE unordered operand. All these test should be false. */
if
(
nan
==
nan
)
abort
();
if
(
nan
!=
x
)
x
=
1
.
0
;
else
abort
();
if
(
nan
<
x
)
abort
();
if
(
nan
>
x
)
abort
();
if
(
nan
<=
x
)
abort
();
if
(
nan
>=
x
)
abort
();
if
(
nan
==
x
)
abort
();
#endif
exit
(
0
);
}
gcc/testsuite/gcc.c-torture/noncompile/920507-1.c
View file @
59159a10
x
(){
register
*
a
asm
(
"
fr1
"
);
int
*
v
[
1
]
=
{
a
};}
x
(){
register
*
a
asm
(
"
unknown_register
"
);
int
*
v
[
1
]
=
{
a
};}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment