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
96843fa2
Commit
96843fa2
authored
Aug 02, 1999
by
Nick Clifton
Committed by
Nick Clifton
Aug 02, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Call force_operand if X does not satisfy general_operand
From-SVN: r28399
parent
72098802
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
gcc/ChangeLog
+5
-0
gcc/explow.c
+5
-0
No files found.
gcc/ChangeLog
View file @
96843fa2
Mon
Aug
2
09
:
38
:
10
1999
Nick
Clifton
<
nickc
@cygnus
.
com
>
*
explow
.
c
(
force_reg
)
:
Call
force_operand
if
X
does
not
satisfy
general_operand
.
Mon
Aug
2
01
:
34
:
22
1999
Jeffrey
A
Law
(
law
@cygnus
.
com
)
Mon
Aug
2
01
:
34
:
22
1999
Jeffrey
A
Law
(
law
@cygnus
.
com
)
*
fix
-
header
.
c
(
main
)
:
When
testing
for
CONTINUED
,
use
string
*
fix
-
header
.
c
(
main
)
:
When
testing
for
CONTINUED
,
use
string
...
...
gcc/explow.c
View file @
96843fa2
...
@@ -730,7 +730,12 @@ force_reg (mode, x)
...
@@ -730,7 +730,12 @@ force_reg (mode, x)
if
(
GET_CODE
(
x
)
==
REG
)
if
(
GET_CODE
(
x
)
==
REG
)
return
x
;
return
x
;
temp
=
gen_reg_rtx
(
mode
);
temp
=
gen_reg_rtx
(
mode
);
if
(
!
general_operand
(
x
,
mode
))
x
=
force_operand
(
x
,
NULL_RTX
);
insn
=
emit_move_insn
(
temp
,
x
);
insn
=
emit_move_insn
(
temp
,
x
);
/* Let optimizers know that TEMP's value never changes
/* Let optimizers know that TEMP's value never changes
...
...
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