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
b4ccaa16
Commit
b4ccaa16
authored
May 21, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r1042
parent
e53c841d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
3 deletions
+13
-3
gcc/stmt.c
+13
-3
No files found.
gcc/stmt.c
View file @
b4ccaa16
...
...
@@ -1000,7 +1000,7 @@ expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
rtx
body
;
int
ninputs
=
list_length
(
inputs
);
int
noutputs
=
list_length
(
outputs
);
int
nclobbers
=
list_length
(
clobbers
)
;
int
nclobbers
;
tree
tail
;
register
int
i
;
/* Vector of RTX's of evaluated output operands. */
...
...
@@ -1008,6 +1008,16 @@ expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
/* The insn we have emitted. */
rtx
insn
;
/* Count the number of meaningful clobbered registers, ignoring what
we would ignore later. */
nclobbers
=
0
;
for
(
tail
=
clobbers
;
tail
;
tail
=
TREE_CHAIN
(
tail
))
{
char
*
regname
=
TREE_STRING_POINTER
(
TREE_VALUE
(
tail
));
if
(
decode_reg_name
(
regname
)
>=
0
)
++
nclobbers
;
}
last_expr_type
=
0
;
for
(
i
=
0
,
tail
=
outputs
;
tail
;
tail
=
TREE_CHAIN
(
tail
),
i
++
)
...
...
@@ -1168,7 +1178,7 @@ expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
/* Store (clobber REG) for each clobbered register specified. */
for
(
tail
=
clobbers
;
tail
;
tail
=
TREE_CHAIN
(
tail
)
,
i
++
)
for
(
tail
=
clobbers
;
tail
;
tail
=
TREE_CHAIN
(
tail
))
{
char
*
regname
=
TREE_STRING_POINTER
(
TREE_VALUE
(
tail
));
int
j
=
decode_reg_name
(
regname
);
...
...
@@ -1183,7 +1193,7 @@ expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
}
/* Use QImode since that's guaranteed to clobber just one reg. */
XVECEXP
(
body
,
0
,
i
)
XVECEXP
(
body
,
0
,
i
++
)
=
gen_rtx
(
CLOBBER
,
VOIDmode
,
gen_rtx
(
REG
,
QImode
,
j
));
}
...
...
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