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
d804d490
Commit
d804d490
authored
Sep 18, 2004
by
Diego Novillo
Committed by
Diego Novillo
Sep 18, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* tree-ssa-alias.c (dump_alias_info): Ignore NULL SSA_NAMEs.
From-SVN: r87702
parent
8b547e44
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletions
+10
-1
gcc/ChangeLog
+4
-0
gcc/tree-ssa-alias.c
+6
-1
No files found.
gcc/ChangeLog
View file @
d804d490
2004
-
09
-
18
Diego
Novillo
<
dnovillo
@
redhat
.
com
>
*
tree
-
ssa
-
alias
.
c
(
dump_alias_info
):
Ignore
NULL
SSA_NAMEs
.
2004
-
09
-
18
Jan
Hubicka
<
jh
@
suse
.
cz
>
*
tree
-
into
-
ssa
.
c
(
rewrite_ssa_into_ssa
):
Expect
ssa_name
to
return
...
...
gcc/tree-ssa-alias.c
View file @
d804d490
...
...
@@ -2223,7 +2223,12 @@ dump_alias_info (FILE *file)
for
(
i
=
1
;
i
<
num_ssa_names
;
i
++
)
{
tree
ptr
=
ssa_name
(
i
);
struct
ptr_info_def
*
pi
=
SSA_NAME_PTR_INFO
(
ptr
);
struct
ptr_info_def
*
pi
;
if
(
ptr
==
NULL_TREE
)
continue
;
pi
=
SSA_NAME_PTR_INFO
(
ptr
);
if
(
!
SSA_NAME_IN_FREE_LIST
(
ptr
)
&&
pi
&&
pi
->
name_mem_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