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
e619bb8d
Commit
e619bb8d
authored
May 26, 1993
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(expand_asm_operands): Detect constants as outputs.
From-SVN: r4569
parent
09b11d82
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletions
+9
-1
gcc/stmt.c
+9
-1
No files found.
gcc/stmt.c
View file @
e619bb8d
...
...
@@ -1146,7 +1146,15 @@ expand_asm_operands (string, outputs, inputs, clobbers, vol, filename, line)
if
(
TREE_CODE
(
val
)
!=
VAR_DECL
&&
TREE_CODE
(
val
)
!=
PARM_DECL
&&
TREE_CODE
(
val
)
!=
INDIRECT_REF
)
TREE_VALUE
(
tail
)
=
save_expr
(
TREE_VALUE
(
tail
));
{
TREE_VALUE
(
tail
)
=
save_expr
(
TREE_VALUE
(
tail
));
/* If it's a constant, print error now so don't crash later. */
if
(
TREE_CODE
(
TREE_VALUE
(
tail
))
!=
SAVE_EXPR
)
{
error
(
"invalid output in `asm'"
);
return
;
}
}
output_rtx
[
i
]
=
expand_expr
(
TREE_VALUE
(
tail
),
NULL_RTX
,
VOIDmode
,
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