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
a92b9bdf
Commit
a92b9bdf
authored
Mar 09, 2005
by
Kazu Hirata
Committed by
Kazu Hirata
Mar 09, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree-ssa-alias.c (may_alias_p): Remove v_ann.
From-SVN: r96188
parent
dc3fcf39
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
gcc/ChangeLog
+2
-0
gcc/tree-ssa-alias.c
+1
-2
No files found.
gcc/ChangeLog
View file @
a92b9bdf
...
@@ -30,6 +30,8 @@
...
@@ -30,6 +30,8 @@
* tree-sra.c (decide_block_copy): Remove inst_count.
* tree-sra.c (decide_block_copy): Remove inst_count.
* tree-ssa-alias.c (may_alias_p): Remove v_ann.
2005-03-08 Jeff Law <law@redhat.com>
2005-03-08 Jeff Law <law@redhat.com>
* tree-cfg.c (cleanup_control_flow): If removal of a computed
* tree-cfg.c (cleanup_control_flow): If removal of a computed
...
...
gcc/tree-ssa-alias.c
View file @
a92b9bdf
...
@@ -1600,7 +1600,7 @@ may_alias_p (tree ptr, HOST_WIDE_INT mem_alias_set,
...
@@ -1600,7 +1600,7 @@ may_alias_p (tree ptr, HOST_WIDE_INT mem_alias_set,
tree
var
,
HOST_WIDE_INT
var_alias_set
)
tree
var
,
HOST_WIDE_INT
var_alias_set
)
{
{
tree
mem
;
tree
mem
;
var_ann_t
v_ann
,
m_ann
;
var_ann_t
m_ann
;
alias_stats
.
alias_queries
++
;
alias_stats
.
alias_queries
++
;
alias_stats
.
simple_queries
++
;
alias_stats
.
simple_queries
++
;
...
@@ -1614,7 +1614,6 @@ may_alias_p (tree ptr, HOST_WIDE_INT mem_alias_set,
...
@@ -1614,7 +1614,6 @@ may_alias_p (tree ptr, HOST_WIDE_INT mem_alias_set,
return
false
;
return
false
;
}
}
v_ann
=
var_ann
(
var
);
m_ann
=
var_ann
(
mem
);
m_ann
=
var_ann
(
mem
);
gcc_assert
(
m_ann
->
mem_tag_kind
==
TYPE_TAG
);
gcc_assert
(
m_ann
->
mem_tag_kind
==
TYPE_TAG
);
...
...
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