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
31e4b1c0
Commit
31e4b1c0
authored
Apr 25, 1993
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(make_decl_rtl): If a variable has an asm operand that refers to,
e.g., fp, make a distinct RTL for it. From-SVN: r4215
parent
e09d75bd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletions
+10
-1
gcc/varasm.c
+10
-1
No files found.
gcc/varasm.c
View file @
31e4b1c0
...
...
@@ -354,7 +354,16 @@ make_decl_rtl (decl, asmspec, top_level)
error
(
"global register variable follows a function definition"
);
if
(
TREE_THIS_VOLATILE
(
decl
))
warning
(
"volatile register variables don't work as you might wish"
);
DECL_RTL
(
decl
)
=
gen_rtx
(
REG
,
DECL_MODE
(
decl
),
reg_number
);
/* If the user specified one of the eliminables registers here,
e.g., FRAME_POINTER_REGNUM, we don't want to get this variable
confused with that register and be eliminated. Although this
usage is somewhat suspect, we nevertheless use the following
kludge to avoid setting DECL_RTL to frame_pointer_rtx. */
DECL_RTL
(
decl
)
=
gen_rtx
(
REG
,
DECL_MODE
(
decl
),
FIRST_PSEUDO_REGISTER
);
REGNO
(
DECL_RTL
(
decl
))
=
reg_number
;
REG_USERVAR_P
(
DECL_RTL
(
decl
))
=
1
;
if
(
top_level
)
...
...
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