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
5145eda8
Commit
5145eda8
authored
Nov 04, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(immed_real_const_1, immed_double_const):
Don't push on const_double_chain in nested function. From-SVN: r2688
parent
8f54a09b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
4 deletions
+14
-4
gcc/varasm.c
+14
-4
No files found.
gcc/varasm.c
View file @
5145eda8
...
...
@@ -1324,8 +1324,13 @@ immed_double_const (i0, i1, mode)
if
(
in_current_obstack
)
rtl_in_current_obstack
();
CONST_DOUBLE_CHAIN
(
r
)
=
const_double_chain
;
const_double_chain
=
r
;
/* Don't touch const_double_chain in nested function;
see force_const_mem. */
if
(
outer_function_chain
!=
0
)
{
CONST_DOUBLE_CHAIN
(
r
)
=
const_double_chain
;
const_double_chain
=
r
;
}
/* Store const0_rtx in mem-slot since this CONST_DOUBLE is on the chain.
Actual use of mem-slot is only through force_const_mem. */
...
...
@@ -1390,8 +1395,13 @@ immed_real_const_1 (d, mode)
if
(
in_current_obstack
)
rtl_in_current_obstack
();
CONST_DOUBLE_CHAIN
(
r
)
=
const_double_chain
;
const_double_chain
=
r
;
/* Don't touch const_double_chain in nested function;
see force_const_mem. */
if
(
outer_function_change
!=
0
)
{
CONST_DOUBLE_CHAIN
(
r
)
=
const_double_chain
;
const_double_chain
=
r
;
}
/* Store const0_rtx in CONST_DOUBLE_MEM since this CONST_DOUBLE is on the
chain, but has not been allocated memory. Actual use of CONST_DOUBLE_MEM
...
...
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