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
9a7363b9
Commit
9a7363b9
authored
Mar 10, 2005
by
Bob Wilson
Committed by
Bob Wilson
Mar 10, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* config/xtensa/xtensa.h (MEMBER_TYPE_FORCES_BLK): Define.
From-SVN: r96245
parent
fd6132db
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
0 deletions
+13
-0
gcc/ChangeLog
+4
-0
gcc/config/xtensa/xtensa.h
+9
-0
No files found.
gcc/ChangeLog
View file @
9a7363b9
2005-03-10 Bob Wilson <bob.wilson@acm.org>
* config/xtensa/xtensa.h (MEMBER_TYPE_FORCES_BLK): Define.
2005-03-10 Nathan Sidwell <nathan@codesourcery.com>
2005-03-10 Nathan Sidwell <nathan@codesourcery.com>
* bitmap.c (bitmap_copy): Remove manual loop unrolling.
* bitmap.c (bitmap_copy): Remove manual loop unrolling.
...
...
gcc/config/xtensa/xtensa.h
View file @
9a7363b9
...
@@ -209,6 +209,15 @@ extern unsigned xtensa_current_frame_size;
...
@@ -209,6 +209,15 @@ extern unsigned xtensa_current_frame_size;
bitfields and the structures that contain them. */
bitfields and the structures that contain them. */
#define PCC_BITFIELD_TYPE_MATTERS 1
#define PCC_BITFIELD_TYPE_MATTERS 1
/* Disable the use of word-sized or smaller complex modes for structures,
and for function arguments in particular, where they cause problems with
register a7. The xtensa_copy_incoming_a7 function assumes that there is
a single reference to an argument in a7, but with small complex modes the
real and imaginary components may be extracted separately, leading to two
uses of the register, only one of which would be replaced. */
#define MEMBER_TYPE_FORCES_BLK(FIELD, MODE) \
((MODE) == CQImode || (MODE) == CHImode)
/* Align string constants and constructors to at least a word boundary.
/* Align string constants and constructors to at least a word boundary.
The typical use of this macro is to increase alignment for string
The typical use of this macro is to increase alignment for string
constants to be word aligned so that 'strcpy' calls that copy
constants to be word aligned so that 'strcpy' calls that copy
...
...
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