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
f711a87a
Commit
f711a87a
authored
15 years ago
by
Ramana Radhakrishnan
Committed by
Ramana Radhakrishnan
15 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix PR target/38571
From-SVN: r147000
parent
fa5ed76e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletions
+7
-1
gcc/ChangeLog
+6
-0
gcc/config/arm/arm.h
+1
-1
No files found.
gcc/ChangeLog
View file @
f711a87a
2009-04-30 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
PR target/38571
* config/arm/arm.h (FUNCTION_BOUNDARY): Set to 16 for thumb
when optimizing for size.
2009-04-30 Hans-Peter Nilsson <hp@axis.com>
* gcse.c (gcse_constant_p): Fix typo in last change.
...
...
This diff is collapsed.
Click to expand it.
gcc/config/arm/arm.h
View file @
f711a87a
...
...
@@ -537,7 +537,7 @@ extern int arm_arch_hwdiv;
#define PREFERRED_STACK_BOUNDARY \
(arm_abi == ARM_ABI_ATPCS ? 64 : STACK_BOUNDARY)
#define FUNCTION_BOUNDARY
32
#define FUNCTION_BOUNDARY
((TARGET_THUMB && optimize_size) ? 16 : 32)
/* The lowest bit is used to indicate Thumb-mode functions, so the
vbit must go into the delta field of pointers to member
...
...
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