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
3e1dec29
Commit
3e1dec29
authored
19 years ago
by
Nick Clifton
Committed by
Nick Clifton
19 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(arc_output_function_epilogue): Remove prescan parameter from calls to
final_scan_insn. From-SVN: r98315
parent
df3a97a8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
gcc/ChangeLog
+3
-0
gcc/config/arc/arc.c
+3
-4
No files found.
gcc/ChangeLog
View file @
3e1dec29
2005-04-18 Nick Clifton <nickc@redhat.com>
* config/arc/arc.c (arc_output_function_epilogue): Remove prescan
parameter from calls to final_scan_insn.
* config.gcc (m68hc12): Use the m68hc11.opt file for target
specific options.
(v850e, v850e1): Use the v850.opt file for target specific
...
...
This diff is collapsed.
Click to expand it.
gcc/config/arc/arc.c
View file @
3e1dec29
...
...
@@ -1347,7 +1347,7 @@ arc_output_function_epilogue (FILE *file, HOST_WIDE_INT size)
/* ??? If stack intactness is important, always emit now. */
if
(
MUST_SAVE_RETURN_ADDR
&&
epilogue_delay
!=
NULL_RTX
)
{
final_scan_insn
(
XEXP
(
epilogue_delay
,
0
),
file
,
1
,
0
,
1
,
NULL
);
final_scan_insn
(
XEXP
(
epilogue_delay
,
0
),
file
,
1
,
1
,
NULL
);
epilogue_delay
=
NULL_RTX
;
}
...
...
@@ -1379,8 +1379,7 @@ arc_output_function_epilogue (FILE *file, HOST_WIDE_INT size)
{
if
(
epilogue_delay
)
{
final_scan_insn
(
XEXP
(
epilogue_delay
,
0
),
file
,
1
,
0
,
1
,
NULL
);
final_scan_insn
(
XEXP
(
epilogue_delay
,
0
),
file
,
1
,
1
,
NULL
);
}
}
...
...
@@ -1405,7 +1404,7 @@ arc_output_function_epilogue (FILE *file, HOST_WIDE_INT size)
abort
();
if
(
restored
<
size
)
abort
();
final_scan_insn
(
XEXP
(
epilogue_delay
,
0
),
file
,
1
,
0
,
1
,
NULL
);
final_scan_insn
(
XEXP
(
epilogue_delay
,
0
),
file
,
1
,
1
,
NULL
);
}
else
if
(
frame_pointer_needed
&&
!
fp_restored_p
)
{
...
...
This diff is collapsed.
Click to expand it.
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