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
ef792183
Commit
ef792183
authored
Jul 31, 1998
by
Michael Meissner
Committed by
Michael Meissner
Jul 31, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
If -Os use load/store multiple instructions
From-SVN: r21511
parent
02c452af
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
0 deletions
+10
-0
gcc/ChangeLog
+5
-0
gcc/config/rs6000/rs6000.c
+5
-0
No files found.
gcc/ChangeLog
View file @
ef792183
Fri Jul 31 20:22:02 1998 Michael Meissner <meissner@cygnus.com>
* rs6000.c (rs6000_override_options): If big endian and -Os, use
load/store multiple instructions unless user overrides.
Fri Jul 31 17:08:59 1998 Jeffrey A Law (law@cygnus.com)
* ns32k/netbsd.h: Fix typo.
...
...
gcc/config/rs6000/rs6000.c
View file @
ef792183
...
...
@@ -276,6 +276,11 @@ rs6000_override_options (default_cpu)
}
}
/* If we are optimizing big endian systems for space, use the
store multiple instructions. */
if
(
BYTES_BIG_ENDIAN
&&
optimize_size
)
target_flags
|=
MASK_MULTIPLE
;
/* If -mmultiple or -mno-multiple was explicitly used, don't
override with the processor default */
if
(
TARGET_MULTIPLE_SET
)
...
...
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