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
f80735f6
Commit
f80735f6
authored
May 27, 2009
by
Nick Clifton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Apply fixed version of previous delta.
From-SVN: r147911
parent
65332587
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
gcc/config/m32r/m32r.c
+2
-2
No files found.
gcc/config/m32r/m32r.c
View file @
f80735f6
...
@@ -632,7 +632,7 @@ easy_df_const (rtx op)
...
@@ -632,7 +632,7 @@ easy_df_const (rtx op)
int
int
memreg_operand
(
rtx
op
,
enum
machine_mode
mode
ATTRIBUTE_UNUSED
)
memreg_operand
(
rtx
op
,
enum
machine_mode
mode
ATTRIBUTE_UNUSED
)
{
{
return
REG_P
(
op
)
&&
MEM
_P
(
XEXP
(
op
,
0
));
return
MEM_P
(
op
)
&&
REG
_P
(
XEXP
(
op
,
0
));
}
}
/* Return nonzero if TYPE must be passed by indirect reference. */
/* Return nonzero if TYPE must be passed by indirect reference. */
...
@@ -1107,7 +1107,7 @@ gen_split_move_double (rtx operands[])
...
@@ -1107,7 +1107,7 @@ gen_split_move_double (rtx operands[])
st r1,r3; st r2,+r3; addi r3,-4
st r1,r3; st r2,+r3; addi r3,-4
which saves 2 bytes and doesn't force longword alignment. */
which saves 2 bytes and doesn't force longword alignment. */
else
if
(
REG_P
(
dest
)
&&
MEM
_P
(
src
))
else
if
(
MEM_P
(
dest
)
&&
REG
_P
(
src
))
{
{
emit_insn
(
gen_rtx_SET
(
VOIDmode
,
emit_insn
(
gen_rtx_SET
(
VOIDmode
,
adjust_address
(
dest
,
SImode
,
0
),
adjust_address
(
dest
,
SImode
,
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