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
c82bde8a
Commit
c82bde8a
authored
Sep 11, 2008
by
Joseph Myers
Committed by
Joseph Myers
Sep 11, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.dg/builtins-8.c: Condition cbrt test on HAVE_C99_RUNTIME.
From-SVN: r140297
parent
13d7e8af
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gcc.dg/builtins-8.c
+2
-0
No files found.
gcc/testsuite/ChangeLog
View file @
c82bde8a
2008-09-11 Joseph Myers <joseph@codesourcery.com>
* gcc.dg/builtins-8.c: Condition cbrt test on HAVE_C99_RUNTIME.
2008-09-11 Paolo Bonzini <bonzini@gnu.org>
* gcc.dg/tree-ssa/vrp47.c: New.
...
...
gcc/testsuite/gcc.dg/builtins-8.c
View file @
c82bde8a
...
...
@@ -27,8 +27,10 @@ void test(double x)
if
(
pow
(
x
,
0
.
5
)
!=
sqrt
(
x
))
abort
();
#ifdef HAVE_C99_RUNTIME
if
(
pow
(
x
,
1
.
0
/
3
.
0
)
!=
cbrt
(
x
))
abort
();
#endif
}
int
main
()
...
...
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