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
aeb7ff68
Commit
aeb7ff68
authored
Mar 06, 1999
by
Richard Henderson
Committed by
Richard Henderson
Mar 06, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* recog.c (push_operand, pop_operand): VOIDmode needn't match modes.
From-SVN: r25624
parent
9a794e50
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+4
-0
gcc/recog.c
+2
-2
No files found.
gcc/ChangeLog
View file @
aeb7ff68
Sun
Mar
7
02
:
44
:
15
1999
Richard
Henderson
<
rth
@cygnus
.
com
>
*
recog
.
c
(
push_operand
,
pop_operand
)
:
VOIDmode
needn
'
t
match
modes
.
Sun
Mar
7
01
:
58
:
47
1999
Richard
Henderson
<
rth
@cygnus
.
com
>
*
cse
.
c
(
canon_hash
)
:
Never
reject
hard
regs
in
CCmode
.
...
...
gcc/recog.c
View file @
aeb7ff68
...
...
@@ -1206,7 +1206,7 @@ push_operand (op, mode)
if
(
GET_CODE
(
op
)
!=
MEM
)
return
0
;
if
(
GET_MODE
(
op
)
!=
mode
)
if
(
mode
!=
VOIDmode
&&
GET_MODE
(
op
)
!=
mode
)
return
0
;
op
=
XEXP
(
op
,
0
);
...
...
@@ -1231,7 +1231,7 @@ pop_operand (op, mode)
if
(
GET_CODE
(
op
)
!=
MEM
)
return
0
;
if
(
GET_MODE
(
op
)
!=
mode
)
if
(
mode
!=
VOIDmode
&&
GET_MODE
(
op
)
!=
mode
)
return
0
;
op
=
XEXP
(
op
,
0
);
...
...
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