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
c09e6498
Commit
c09e6498
authored
Jun 18, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r1207
parent
c1f7c223
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
4 deletions
+15
-4
gcc/stmt.c
+9
-2
gcc/varasm.c
+6
-2
No files found.
gcc/stmt.c
View file @
c09e6498
...
...
@@ -1012,7 +1012,8 @@ expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
for
(
tail
=
clobbers
;
tail
;
tail
=
TREE_CHAIN
(
tail
))
{
char
*
regname
=
TREE_STRING_POINTER
(
TREE_VALUE
(
tail
));
if
(
decode_reg_name
(
regname
)
>=
0
)
i
=
decode_reg_name
(
regname
);
if
(
i
>=
0
||
i
==
-
4
)
++
nclobbers
;
}
...
...
@@ -1183,9 +1184,15 @@ expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
if
(
j
<
0
)
{
if
(
j
==
-
3
)
if
(
j
==
-
3
)
/* `cc', which is not a register */
continue
;
if
(
j
==
-
4
)
/* `memory', don't cache memory across asm */
{
XVECEXP
(
body
,
0
,
i
++
)
=
gen_rtx
(
CLOBBER
,
VOIDmode
,
const0_rtx
);
continue
;
}
error
(
"unknown register name `%s' in `asm'"
,
regname
);
return
;
}
...
...
gcc/varasm.c
View file @
c09e6498
...
...
@@ -212,8 +212,9 @@ strip_reg_name (name)
/* Decode an `asm' spec for a declaration as a register name.
Return the register number, or -1 if nothing specified,
or -2 if the ASMSPEC is not `cc' and is not recognized,
or -3 if ASMSPEC is `cc' and is not recognized.
or -2 if the ASMSPEC is not `cc' or `memory' and is not recognized,
or -3 if ASMSPEC is `cc' and is not recognized,
or -4 if ASMSPEC is `memory' and is not recognized.
Accept an exact spelling or a decimal number.
Prefixes such as % are optional. */
...
...
@@ -257,6 +258,9 @@ decode_reg_name (asmspec)
}
#endif
/* ADDITIONAL_REGISTER_NAMES */
if
(
!
strcmp
(
asmspec
,
"memory"
))
return
-
4
;
if
(
!
strcmp
(
asmspec
,
"cc"
))
return
-
3
;
...
...
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