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
65a939f7
Commit
65a939f7
authored
Apr 30, 2004
by
Paul Brook
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* arm.c (arm_needs_doubleword_align): Use mode alignment.
From-SVN: r81332
parent
0bf87ea5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
11 deletions
+12
-11
gcc/ChangeLog
+10
-6
gcc/config/arm/arm.c
+2
-5
No files found.
gcc/ChangeLog
View file @
65a939f7
2004-04-30 Paul Brook <paul@codesourcery.com>
* arm.c (arm_needs_doubleword_align): Use mode alignment.
2004-04-30 Paolo Bonzini <bonzini@gnu.org>
* config/altivec/altivec.h [__cplusplus] (vec_subsubs): Rename to
...
...
@@ -7,8 +11,8 @@
2004-04-30 Uros Bizjak <uros@kss-loka.si>
* config/i386/i386.md (atansf2, atandf2, atanxf2): Move near
atan2?f3 expanders.
* config/i386/i386.md (atansf2, atandf2, atanxf2): Move near
atan2?f3 expanders.
2004-04-29 Nick Clifton <nickc@redhat.com>
...
...
@@ -20,10 +24,10 @@
2004-04-30 Uros Bizjak <uros@kss-loka.si>
* reg-stack.c (subst_stack_regs_pat): <UNSPEC_SIN, UNSPEC_COS,
UNSPEC_FRNDINT, UNSPEC_F2XM1>: abort() if src1 dies.
<UNSPEC_SINCOS_COS, UNSPEC_TAN_ONE, UNSPEC_XTRACT_FRACT>: Same.
<UNSPEC_SINCOS_SIN, UNSPEC_TAN_TAN, UNSPEC_XTRACT_EXP>: Same.
* reg-stack.c (subst_stack_regs_pat): <UNSPEC_SIN, UNSPEC_COS,
UNSPEC_FRNDINT, UNSPEC_F2XM1>: abort() if src1 dies.
<UNSPEC_SINCOS_COS, UNSPEC_TAN_ONE, UNSPEC_XTRACT_FRACT>: Same.
<UNSPEC_SINCOS_SIN, UNSPEC_TAN_TAN, UNSPEC_XTRACT_EXP>: Same.
2004-04-29 Richard Guenther <richard.guenther@uni-tuebingen.de>
...
...
gcc/config/arm/arm.c
View file @
65a939f7
...
...
@@ -2318,11 +2318,8 @@ arm_init_cumulative_args (CUMULATIVE_ARGS *pcum, tree fntype,
bool
arm_needs_doubleword_align
(
enum
machine_mode
mode
,
tree
type
)
{
return
(
mode
==
DImode
||
mode
==
DFmode
||
VECTOR_MODE_SUPPORTED_P
(
mode
)
||
(
mode
==
BLKmode
&&
TYPE_ALIGN
(
type
)
>
PARM_BOUNDARY
));
return
(
GET_MODE_ALIGNMENT
(
mode
)
>
PARM_BOUNDARY
||
(
type
&&
TYPE_ALIGN
(
type
)
>
PARM_BOUNDARY
));
}
...
...
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