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
45044655
Commit
45044655
authored
May 20, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r1026
parent
29008b51
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
gcc/genattrtab.c
+3
-2
No files found.
gcc/genattrtab.c
View file @
45044655
...
...
@@ -2263,7 +2263,8 @@ evaluate_eq_attr (exp, value, insn_code, insn_index)
if
(
address_used
)
{
if
(
!
RTX_UNCHANGING_P
(
exp
)
&&
current_alternative_string
)
/* This had `&& current_alternative_string', which seems to be wrong. */
if
(
!
RTX_UNCHANGING_P
(
exp
))
return
copy_rtx_unchanging
(
exp
);
return
exp
;
}
...
...
@@ -2768,7 +2769,7 @@ simplify_test_exp (exp, insn_code, insn_index)
/* We have already simplified this expression. Simplifying it again
won't buy anything unless we weren't given a valid insn code
to process (i.e., we are canonicalizing something.). */
if
(
insn_code
!=
-
2
&&
current_alternative_string
if
(
insn_code
!=
-
2
/* Seems wrong: && current_alternative_string. */
&&
!
RTX_UNCHANGING_P
(
newexp
))
return
copy_rtx_unchanging
(
newexp
);
...
...
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