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
f5f178e0
Commit
f5f178e0
authored
Apr 20, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r802
parent
861d9076
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
gcc/genemit.c
+6
-5
No files found.
gcc/genemit.c
View file @
f5f178e0
...
@@ -301,12 +301,13 @@ gen_insn (insn)
...
@@ -301,12 +301,13 @@ gen_insn (insn)
rtx
new
=
XEXP
(
XVECEXP
(
insn
,
1
,
j
),
0
);
rtx
new
=
XEXP
(
XVECEXP
(
insn
,
1
,
j
),
0
);
/* OLD and NEW are the same if both are to be a SCRATCH
/* OLD and NEW are the same if both are to be a SCRATCH
of the same mode,
or if both are registers of the same mode and number. */
or if both are registers of the same mode and number. */
if
(
!
(
(
GET_CODE
(
old
)
==
MATCH_SCRATCH
if
(
!
(
GET_MODE
(
old
)
==
GET_MODE
(
new
)
&&
GET_CODE
(
new
)
==
MATCH_SCRATCH
)
&&
((
GET_CODE
(
old
)
==
MATCH_SCRATCH
||
(
GET_CODE
(
old
)
==
REG
&&
GET_CODE
(
new
)
==
REG
&&
GET_CODE
(
new
)
==
MATCH_SCRATCH
)
&&
GET_MODE
(
old
)
==
GET_MODE
(
new
)
||
(
GET_CODE
(
old
)
==
REG
&&
GET_CODE
(
new
)
==
REG
&&
REGNO
(
old
)
==
REGNO
(
new
))))
&&
REGNO
(
old
)
==
REGNO
(
new
)
))))
break
;
break
;
}
}
...
...
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