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
92c7bc2a
Commit
92c7bc2a
authored
Jan 23, 2004
by
Roger Sayle
Committed by
Roger Sayle
Jan 23, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc.dg/builtins-29.c: New test case.
From-SVN: r76444
parent
04b8f97f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
100 additions
and
2 deletions
+100
-2
gcc/ChangeLog
+0
-2
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/gcc.dg/builtins-29.c
+96
-0
No files found.
gcc/ChangeLog
View file @
92c7bc2a
...
...
@@ -36,8 +36,6 @@
round, roundf and roundl.
(fold_builtin): Call fold_builtin_round for BUILT_IN_ROUND{,F,L}.
* gcc.dg/builtins-29.c: New test case.
2004-01-23 Alexandre Oliva <aoliva@redhat.com>
PR optimization/13819
...
...
gcc/testsuite/ChangeLog
View file @
92c7bc2a
2004-01-23 Roger Sayle <roger@eyesopen.com>
* gcc.dg/builtins-29.c: New test case.
2004-01-23 Zack Weinberg <zack@codesourcery.com>
PR 18314
...
...
gcc/testsuite/gcc.dg/builtins-29.c
0 → 100644
View file @
92c7bc2a
/* Copyright (C) 2004 Free Software Foundation.
Check that constant folding of round, roundf and roundl math functions
doesn't break anything and produces the expected results.
Written by Roger Sayle, 22nd January 2004. */
/* { dg-do link } */
/* { dg-options "-O2" } */
extern
void
link_error
(
void
);
extern
double
round
(
double
);
extern
float
roundf
(
float
);
extern
long
double
roundl
(
long
double
);
void
test
()
{
if
(
round
(
0
.
0
)
!=
0
.
0
)
link_error
();
if
(
round
(
6
.
0
)
!=
6
.
0
)
link_error
();
if
(
round
(
-
8
.
0
)
!=
-
8
.
0
)
link_error
();
if
(
round
(
3
.
2
)
!=
3
.
0
)
link_error
();
if
(
round
(
-
2
.
8
)
!=
-
3
.
0
)
link_error
();
if
(
round
(
0
.
01
)
!=
0
.
0
)
link_error
();
if
(
round
(
-
0
.
7
)
!=
-
1
.
0
)
link_error
();
if
(
round
(
2
.
5
)
!=
3
.
0
)
link_error
();
if
(
round
(
-
1
.
5
)
!=
-
2
.
0
)
link_error
();
}
void
testf
()
{
if
(
roundf
(
0
.
0
f
)
!=
0
.
0
f
)
link_error
();
if
(
roundf
(
6
.
0
f
)
!=
6
.
0
f
)
link_error
();
if
(
roundf
(
-
8
.
0
f
)
!=
-
8
.
0
f
)
link_error
();
if
(
roundf
(
3
.
2
f
)
!=
3
.
0
f
)
link_error
();
if
(
roundf
(
-
2
.
8
f
)
!=
-
3
.
0
f
)
link_error
();
if
(
roundf
(
0
.
01
f
)
!=
0
.
0
f
)
link_error
();
if
(
roundf
(
-
0
.
7
f
)
!=
-
1
.
0
f
)
link_error
();
if
(
roundf
(
2
.
5
f
)
!=
3
.
0
f
)
link_error
();
if
(
roundf
(
-
1
.
5
f
)
!=
-
2
.
0
f
)
link_error
();
}
void
testl
()
{
if
(
roundl
(
0
.
0l
)
!=
0
.
0l
)
link_error
();
if
(
roundl
(
6
.
0l
)
!=
6
.
0l
)
link_error
();
if
(
roundl
(
-
8
.
0l
)
!=
-
8
.
0l
)
link_error
();
if
(
roundl
(
3
.
2l
)
!=
3
.
0l
)
link_error
();
if
(
roundl
(
-
2
.
8l
)
!=
-
3
.
0l
)
link_error
();
if
(
roundl
(
0
.
01l
)
!=
0
.
0l
)
link_error
();
if
(
roundl
(
-
0
.
7l
)
!=
-
1
.
0l
)
link_error
();
if
(
roundl
(
2
.
5l
)
!=
3
.
0l
)
link_error
();
if
(
roundl
(
-
1
.
5l
)
!=
-
2
.
0l
)
link_error
();
}
int
main
()
{
test
();
testf
();
testl
();
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