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
e15bb5c6
Commit
e15bb5c6
authored
Jun 13, 2003
by
Kazu Hirata
Committed by
Kazu Hirata
Jun 13, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
builtins.c: Fix comment typos.
* builtins.c: Fix comment typos. * fold-const.c: Likewise. From-SVN: r67907
parent
d88e80e6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
3 deletions
+8
-3
gcc/ChangeLog
+5
-0
gcc/builtins.c
+1
-1
gcc/fold-const.c
+2
-2
No files found.
gcc/ChangeLog
View file @
e15bb5c6
2003-06-13 Kazu Hirata <kazu@cs.umass.edu>
* builtins.c: Fix comment typos.
* fold-const.c: Likewise.
2003-06-13 Doug Evans <dje@sebabeach.org>
Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
...
...
gcc/builtins.c
View file @
e15bb5c6
...
...
@@ -180,7 +180,7 @@ static void init_builtin_dconsts PARAMS ((void));
static
tree
fold_builtin_cabs
PARAMS
((
tree
,
tree
,
tree
));
/* Initialize mathematical constants for constant folding builtins.
These constants need to be given to atleast 160 bits precision. */
These constants need to be given to at
least 160 bits precision. */
static
void
init_builtin_dconsts
()
...
...
gcc/fold-const.c
View file @
e15bb5c6
...
...
@@ -8026,7 +8026,7 @@ tree_expr_nonnegative_p (t)
return
tree_expr_nonnegative_p
(
TREE_OPERAND
(
t
,
0
))
&&
tree_expr_nonnegative_p
(
TREE_OPERAND
(
t
,
1
));
/* zero_extend(x) + zero_extend(y) is non-negative i
s
x and y are
/* zero_extend(x) + zero_extend(y) is non-negative i
f
x and y are
both unsigned and at least 2 bits shorter than the result. */
if
(
TREE_CODE
(
TREE_TYPE
(
t
))
==
INTEGER_TYPE
&&
TREE_CODE
(
TREE_OPERAND
(
t
,
0
))
==
NOP_EXPR
...
...
@@ -8054,7 +8054,7 @@ tree_expr_nonnegative_p (t)
&&
tree_expr_nonnegative_p
(
TREE_OPERAND
(
t
,
1
));
}
/* zero_extend(x) * zero_extend(y) is non-negative i
s
x and y are
/* zero_extend(x) * zero_extend(y) is non-negative i
f
x and y are
both unsigned and their total bits is shorter than the result. */
if
(
TREE_CODE
(
TREE_TYPE
(
t
))
==
INTEGER_TYPE
&&
TREE_CODE
(
TREE_OPERAND
(
t
,
0
))
==
NOP_EXPR
...
...
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