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
bfae8040
Commit
bfae8040
authored
Sep 10, 2002
by
Denis Chertykov
Committed by
Denis Chertykov
Sep 10, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/avr/avr.md (movstrhi): Use right operands for conversion.
From-SVN: r57008
parent
0c11ae22
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
gcc/ChangeLog
+4
-0
gcc/config/avr/avr.md
+4
-3
No files found.
gcc/ChangeLog
View file @
bfae8040
2002
-
09
-
10
Denis
Chertykov
<
denisc
@overta
.
ru
>
*
config
/
avr
/
avr
.
md
(
movstrhi
)
:
Use
right
operands
for
conversion
.
2002
-
09
-
10
Richard
Earnshaw
<
rearnsha
@arm
.
com
>
2002
-
09
-
10
Richard
Earnshaw
<
rearnsha
@arm
.
com
>
PR
c
/
7873
PR
c
/
7873
...
...
gcc/config/avr/avr.md
View file @
bfae8040
...
@@ -360,10 +360,11 @@
...
@@ -360,10 +360,11 @@
if (GET_CODE (operands
[
2
]
) != CONST_INT)
if (GET_CODE (operands
[
2
]
) != CONST_INT)
FAIL;
FAIL;
cnt8 = byte_immediate_operand (operands
[
1
]
, GET_MODE (operands
[
1
]
));
cnt8 = byte_immediate_operand (operands
[
2
]
, GET_MODE (operands
[
2
]
));
mode = cnt8 ? QImode : HImode;
mode = cnt8 ? QImode : HImode;
operands
[
1
]
= copy_to_mode_reg (mode,
operands
[
2
]
= copy_to_mode_reg (mode,
gen_int_mode (INTVAL (operands
[
1
]
), mode));
gen_int_mode (INTVAL (operands
[
2
]
), mode));
operands
[
4
]
= operands
[
2
]
;
addr0 = copy_to_mode_reg (Pmode, XEXP (operands
[
0
]
, 0));
addr0 = copy_to_mode_reg (Pmode, XEXP (operands
[
0
]
, 0));
addr1 = copy_to_mode_reg (Pmode, XEXP (operands
[
1
]
, 0));
addr1 = copy_to_mode_reg (Pmode, XEXP (operands
[
1
]
, 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