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
688743e7
Commit
688743e7
authored
Jul 13, 1994
by
Richard Earnshaw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(FRAME_POINTER_REQUIRED): Always true if the function has a nonlocal
label. From-SVN: r7753
parent
a08e7493
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
+2
-1
gcc/config/arm/arm.h
+2
-1
No files found.
gcc/config/arm/arm.h
View file @
688743e7
...
@@ -409,7 +409,8 @@ extern enum floating_point_type arm_fpu;
...
@@ -409,7 +409,8 @@ extern enum floating_point_type arm_fpu;
If we have to have a frame pointer we might as well make use of it.
If we have to have a frame pointer we might as well make use of it.
APCS says that the frame pointer does not need to be pushed in leaf
APCS says that the frame pointer does not need to be pushed in leaf
functions. */
functions. */
#define FRAME_POINTER_REQUIRED (TARGET_APCS && !leaf_function_p ())
#define FRAME_POINTER_REQUIRED \
(current_function_has_nonlocal_label || (TARGET_APCS && !leaf_function_p ()))
/* Base register for access to arguments of the function. */
/* Base register for access to arguments of the function. */
#define ARG_POINTER_REGNUM 26
#define ARG_POINTER_REGNUM 26
...
...
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