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
41e0f05c
Commit
41e0f05c
authored
Aug 07, 2001
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
revert get_alias_set change for now
From-SVN: r44692
parent
0830ae44
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
10 deletions
+0
-10
gcc/ChangeLog
+0
-3
gcc/alias.c
+0
-7
No files found.
gcc/ChangeLog
View file @
41e0f05c
...
@@ -25,9 +25,6 @@ Tue Aug 7 14:56:16 CEST 2001 Jan Hubicka <jh@suse.cz>
...
@@ -25,9 +25,6 @@ Tue Aug 7 14:56:16 CEST 2001 Jan Hubicka <jh@suse.cz>
*
c
-
semantics
.
c
(
make_rtl_for_local_static
)
:
Use
DECL_RTL_SET_P
.
*
c
-
semantics
.
c
(
make_rtl_for_local_static
)
:
Use
DECL_RTL_SET_P
.
*
alias
.
c
(
get_alias_set
)
:
Return
a
previously
calculated
alias
set
for
a
VAR_DECL
.
2001
-
08
-
06
Richard
Henderson
<
rth
@redhat
.
com
>
2001
-
08
-
06
Richard
Henderson
<
rth
@redhat
.
com
>
*
varasm
.
c
(
assemble_gc_entry
)
:
Remove
.
*
varasm
.
c
(
assemble_gc_entry
)
:
Remove
.
...
...
gcc/alias.c
View file @
41e0f05c
...
@@ -527,13 +527,6 @@ get_alias_set (t)
...
@@ -527,13 +527,6 @@ get_alias_set (t)
return
0
;
return
0
;
}
}
/* If we've already determined the alias set for this decl, just
return it. This is necessary for C++ anonymous unions, whose
component variables don't look like union members (boo!). */
if
(
TREE_CODE
(
t
)
==
VAR_DECL
&&
DECL_RTL_SET_P
(
t
)
&&
GET_CODE
(
DECL_RTL
(
t
))
==
MEM
)
return
MEM_ALIAS_SET
(
DECL_RTL
(
t
));
/* Give the language another chance to do something special. */
/* Give the language another chance to do something special. */
if
(
orig_t
!=
t
if
(
orig_t
!=
t
&&
(
set
=
lang_get_alias_set
(
t
))
!=
-
1
)
&&
(
set
=
lang_get_alias_set
(
t
))
!=
-
1
)
...
...
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