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
d51f3632
Commit
d51f3632
authored
May 23, 2002
by
Jan Hubicka
Committed by
Jan Hubicka
May 23, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcse.c (hash_expr): Do not use alias set for hashing.
From-SVN: r53772
parent
ba081f92
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletions
+7
-1
gcc/ChangeLog
+4
-0
gcc/gcse.c
+3
-1
No files found.
gcc/ChangeLog
View file @
d51f3632
Thu May 23 09:22:23 CEST 2002 Jan Hubicka <jh@suse.cz>
* gcse.c (hash_expr): Do not use alias set for hashing.
2002-05-22 Kevin Buettner <kevinb@redhat.com>
2002-05-22 Kevin Buettner <kevinb@redhat.com>
* dbxout.c (dbxout_class_name_qualifiers): New function.
* dbxout.c (dbxout_class_name_qualifiers): New function.
...
...
gcc/gcse.c
View file @
d51f3632
...
@@ -1689,7 +1689,9 @@ hash_expr_1 (x, mode, do_not_record_p)
...
@@ -1689,7 +1689,9 @@ hash_expr_1 (x, mode, do_not_record_p)
}
}
hash
+=
(
unsigned
int
)
MEM
;
hash
+=
(
unsigned
int
)
MEM
;
hash
+=
MEM_ALIAS_SET
(
x
);
/* We used alias set for hashing, but this is not good, since the alias
set may differ in -fprofile-arcs and -fbranch-probabilities compilation
causing the profiles to fail to match. */
x
=
XEXP
(
x
,
0
);
x
=
XEXP
(
x
,
0
);
goto
repeat
;
goto
repeat
;
...
...
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