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
afdfb380
Commit
afdfb380
authored
May 31, 2002
by
Alan Lehotsky
Committed by
Alan Lehotsky
May 31, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r54108
parent
f2df45f6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
5 deletions
+14
-5
gcc/ChangeLog
+4
-0
gcc/varasm.c
+10
-5
No files found.
gcc/ChangeLog
View file @
afdfb380
2002-05-31 Alan Lehotsky <apl@alum.mit.edu>
* varasm.c (mark_constant_pool): Walk epilogue delay list
checking the insn, not the chain for potential constants.
Fri May 31 12:38:43 2002 J"orn Rennecke <joern.rennecke@superh.com>
* config/sh/elf.h (ASM_SPEC): Use subtarget_endian_asm_spec.
...
...
gcc/varasm.c
View file @
afdfb380
...
...
@@ -3893,6 +3893,7 @@ static void
mark_constant_pool
()
{
rtx
insn
;
rtx
link
;
struct
pool_constant
*
pool
;
if
(
first_pool
==
0
&&
htab_elements
(
const_str_htab
)
==
0
)
...
...
@@ -3905,11 +3906,15 @@ mark_constant_pool ()
if
(
INSN_P
(
insn
))
mark_constants
(
PATTERN
(
insn
));
for
(
insn
=
current_function_epilogue_delay_list
;
insn
;
insn
=
XEXP
(
insn
,
1
))
if
(
INSN_P
(
insn
))
mark_constants
(
PATTERN
(
insn
));
for
(
link
=
current_function_epilogue_delay_list
;
link
;
link
=
XEXP
(
link
,
1
))
{
insn
=
XEXP
(
link
,
0
);
if
(
INSN_P
(
insn
))
mark_constants
(
PATTERN
(
insn
));
}
}
/* Look through appropriate parts of X, marking all entries in the
...
...
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