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
17372f8c
Commit
17372f8c
authored
Oct 02, 2008
by
Daniel Jacobowitz
Committed by
Daniel Jacobowitz
Oct 02, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* builtins.c (fold_builtin_pow): Check for 0 ** NEGATIVE.
From-SVN: r140833
parent
0d17b70a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
2 deletions
+10
-2
gcc/ChangeLog
+4
-0
gcc/builtins.c
+6
-2
No files found.
gcc/ChangeLog
View file @
17372f8c
2008
-
10
-
02
Daniel
Jacobowitz
<
dan
@codesourcery
.
com
>
*
builtins
.
c
(
fold_builtin_pow
)
:
Check
for
0
**
NEGATIVE
.
2008
-
10
-
02
Richard
Guenther
<
rguenther
@suse
.
de
>
PR
middle
-
end
/
37713
...
...
gcc/builtins.c
View file @
17372f8c
...
...
@@ -8459,9 +8459,13 @@ fold_builtin_pow (tree fndecl, tree arg0, tree arg1, tree type)
real_from_integer
(
&
cint
,
VOIDmode
,
n
,
n
<
0
?
-
1
:
0
,
0
);
if
(
real_identical
(
&
c
,
&
cint
))
{
/* Attempt to evaluate pow at compile-time. */
/* Attempt to evaluate pow at compile-time, unless this should
raise an exception. */
if
(
TREE_CODE
(
arg0
)
==
REAL_CST
&&
!
TREE_OVERFLOW
(
arg0
))
&&
!
TREE_OVERFLOW
(
arg0
)
&&
(
n
>
0
||
(
!
flag_trapping_math
&&
!
flag_errno_math
)
||
!
REAL_VALUES_EQUAL
(
TREE_REAL_CST
(
arg0
),
dconst0
)))
{
REAL_VALUE_TYPE
x
;
bool
inexact
;
...
...
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