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
8e774944
Commit
8e774944
authored
Apr 11, 2005
by
Kazu Hirata
Committed by
Kazu Hirata
Apr 11, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree-vrp.c (maybe_add_assert_expr): Move a comment.
From-SVN: r97973
parent
edc2eb9e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
5 deletions
+9
-5
gcc/ChangeLog
+4
-0
gcc/tree-vrp.c
+5
-5
No files found.
gcc/ChangeLog
View file @
8e774944
2005-04-11 Kazu Hirata <kazu@cs.umass.edu>
* tree-vrp.c (maybe_add_assert_expr): Move a comment.
2005-04-11 Diego Novillo <dnovillo@redhat.com>
2005-04-11 Diego Novillo <dnovillo@redhat.com>
PR tree-optimization/20920
PR tree-optimization/20920
...
...
gcc/tree-vrp.c
View file @
8e774944
...
@@ -1503,11 +1503,6 @@ maybe_add_assert_expr (basic_block bb)
...
@@ -1503,11 +1503,6 @@ maybe_add_assert_expr (basic_block bb)
cond
=
COND_EXPR_COND
(
last
);
cond
=
COND_EXPR_COND
(
last
);
/* Remove the COND_EXPR operand from the FOUND bitmap.
Otherwise, when we finish traversing each of the sub-graphs,
we won't know whether the variables were found in the
sub-graphs or if they had been found in a block upstream from
BB. */
op
=
USE_OP
(
uses
,
0
);
op
=
USE_OP
(
uses
,
0
);
/* Do not attempt to infer anything in names that flow through
/* Do not attempt to infer anything in names that flow through
...
@@ -1515,6 +1510,11 @@ maybe_add_assert_expr (basic_block bb)
...
@@ -1515,6 +1510,11 @@ maybe_add_assert_expr (basic_block bb)
if
(
SSA_NAME_OCCURS_IN_ABNORMAL_PHI
(
op
))
if
(
SSA_NAME_OCCURS_IN_ABNORMAL_PHI
(
op
))
return
false
;
return
false
;
/* Remove the COND_EXPR operand from the FOUND bitmap.
Otherwise, when we finish traversing each of the sub-graphs,
we won't know whether the variables were found in the
sub-graphs or if they had been found in a block upstream from
BB. */
RESET_BIT
(
found
,
SSA_NAME_VERSION
(
op
));
RESET_BIT
(
found
,
SSA_NAME_VERSION
(
op
));
/* Look for uses of the operands in each of the sub-graphs
/* Look for uses of the operands in each of the sub-graphs
...
...
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