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
5f5780e6
Commit
5f5780e6
authored
Jul 22, 1999
by
Bernd Schmidt
Committed by
Bernd Schmidt
Jul 22, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix a typo in arm_print_operand.
From-SVN: r28219
parent
67ebece1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletions
+6
-1
gcc/ChangeLog
+5
-0
gcc/config/arm/arm.c
+1
-1
No files found.
gcc/ChangeLog
View file @
5f5780e6
Thu
Jul
22
14
:
34
:
59
1999
Bernd
Schmidt
<
bernds
@cygnus
.
co
.
uk
>
*
config
/
arm
/
arm
.
c
(
arm_print_operand
)
:
Fix
typo
in
'M'
case
(
use
NUM_REGS
instead
of
NUM_INTS
).
Thu
Jul
22
11
:
25
:
20
1999
Bernd
Schmidt
<
bernds
@cygnus
.
co
.
uk
>
*
builtins
.
c
:
New
file
.
...
...
gcc/config/arm/arm.c
View file @
5f5780e6
...
...
@@ -6104,7 +6104,7 @@ arm_print_operand (stream, x, code)
case
'M'
:
asm_fprintf
(
stream
,
"{%R%s-%R%s}"
,
reg_names
[
REGNO
(
x
)],
reg_names
[
REGNO
(
x
)
+
NUM_
INT
S
(
GET_MODE
(
x
))
-
1
]);
reg_names
[
REGNO
(
x
)
+
NUM_
REG
S
(
GET_MODE
(
x
))
-
1
]);
return
;
case
'd'
:
...
...
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