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
299d1934
Commit
299d1934
authored
Apr 13, 1999
by
Zack Weinberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Regression test for x86 fp-stack breakage
From-SVN: r26430
parent
b3d2c3b8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
53 additions
and
0 deletions
+53
-0
gcc/testsuite/gcc.c-torture/execute/990413-2.c
+50
-0
gcc/testsuite/gcc.c-torture/execute/990413-2.x
+3
-0
No files found.
gcc/testsuite/gcc.c-torture/execute/990413-2.c
0 → 100644
View file @
299d1934
/* This tests for a bug in regstack that was breaking glibc's math library. */
extern
void
abort
(
void
);
static
__inline
double
minus_zero
(
void
)
{
union
{
double
__d
;
int
__i
[
2
];
}
__x
;
__x
.
__i
[
0
]
=
0x0
;
__x
.
__i
[
1
]
=
0x80000000
;
return
__x
.
__d
;
}
static
__inline
long
double
__atan2l
(
long
double
__y
,
long
double
__x
)
{
register
long
double
__value
;
__asm
__volatile__
(
"fpatan
\n\t
"
:
"=t"
(
__value
)
:
"0"
(
__x
),
"u"
(
__y
)
:
"st(1)"
);
return
__value
;
}
static
__inline
long
double
__sqrtl
(
long
double
__x
)
{
register
long
double
__result
;
__asm
__volatile__
(
"fsqrt"
:
"=t"
(
__result
)
:
"0"
(
__x
));
return
__result
;
}
static
__inline
double
asin
(
double
__x
)
{
return
__atan2l
(
__x
,
__sqrtl
(
1
.
0
-
__x
*
__x
));
}
int
main
(
void
)
{
double
x
;
x
=
minus_zero
();
x
=
asin
(
x
);
if
(
x
!=
0
.
0
)
/* actually -0.0, but 0.0 == -0.0 */
abort
();
return
0
;
}
gcc/testsuite/gcc.c-torture/execute/990413-2.x
0 → 100644
View file @
299d1934
# This test is x86 specific.
if { ! [istarget "i?86-*-*"] } { return 1 }
return 0
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