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
18fccdb4
Commit
18fccdb4
authored
Dec 22, 2015
by
Eric Botcazou
Committed by
Eric Botcazou
Dec 22, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.dg/torture/pr68264.c: Tweak for Solaris.
From-SVN: r231898
parent
f4fd20a2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
3 deletions
+17
-3
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gcc.dg/torture/pr68264.c
+13
-3
No files found.
gcc/testsuite/ChangeLog
View file @
18fccdb4
2015-12-22 Eric Botcazou <ebotcazou@adacore.com>
* gcc.dg/torture/pr68264.c: Tweak for Solaris.
2015-12-21 David Malcolm <dmalcolm@redhat.com>
* g++.dg/diagnostic/bad-binary-ops.C: New test case.
...
...
gcc/testsuite/gcc.dg/torture/pr68264.c
View file @
18fccdb4
...
...
@@ -68,14 +68,24 @@ test (void)
TEST
(
cosh
(
d
),
LARGE_ERANGE
);
TEST
(
sinh
(
d
),
LARGE_ERANGE
);
TEST
(
log
(
d
),
LARGE_NEG_EDOM
);
TEST
(
log2
(
d
),
LARGE_NEG_EDOM
);
#if defined (__sun__) && defined (__unix__)
/* Disabled due to a bug in Solaris libm. */
if
(
0
)
#endif
TEST
(
log2
(
d
),
LARGE_NEG_EDOM
);
TEST
(
log10
(
d
),
LARGE_NEG_EDOM
);
/* Disabled due to glibc PR 6792, fixed in Apr 2015. */
if
(
0
)
TEST
(
log1p
(
d
),
LARGE_NEG_EDOM
);
TEST
(
exp
(
d
),
POWER_ERANGE
);
TEST
(
exp2
(
d
),
POWER_ERANGE
);
TEST
(
expm1
(
d
),
POWER_ERANGE
);
#if defined (__sun__) && defined (__unix__)
/* Disabled due to a bug in Solaris libm. */
if
(
0
)
#endif
{
TEST
(
exp2
(
d
),
POWER_ERANGE
);
TEST
(
expm1
(
d
),
POWER_ERANGE
);
}
TEST
(
sqrt
(
d
),
LARGE_NEG_EDOM
);
TEST
(
pow
(
100
.
0
,
d
),
POWER_ERANGE
);
TEST
(
pow
(
i
,
d
),
POWER_ERANGE
);
...
...
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