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
a4edd584
Commit
a4edd584
authored
23 years ago
by
Stan Shebs
Committed by
Stan Shebs
23 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* rs6000.h (LOCAL_ALIGNMENT): Fix parens.
From-SVN: r48172
parent
619c238c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
2 deletions
+5
-2
gcc/ChangeLog
+4
-0
gcc/config/rs6000/rs6000.h
+1
-2
No files found.
gcc/ChangeLog
View file @
a4edd584
2001
-
12
-
18
Stan
Shebs
<
shebs
@apple
.
com
>
*
rs6000
.
h
(
LOCAL_ALIGNMENT
)
:
Fix
parens
.
Tue
Dec
18
17
:
02
:
06
2001
Richard
Kenner
<
kenner
@vlsi1
.
ultra
.
nyu
.
edu
>
*
emit
-
rtl
.
c
(
widen_memory_access
)
:
Only
call
compare_tree_int
...
...
This diff is collapsed.
Click to expand it.
gcc/config/rs6000/rs6000.h
View file @
a4edd584
...
...
@@ -639,8 +639,7 @@ extern int rs6000_altivec_abi;
local store. TYPE is the data type, and ALIGN is the alignment
that the object would ordinarily have. */
#define LOCAL_ALIGNMENT(TYPE, ALIGN) \
((TARGET_ALTIVEC \
&& TREE_CODE (TYPE)) == VECTOR_TYPE ? 128 : ALIGN)
((TARGET_ALTIVEC && TREE_CODE (TYPE) == VECTOR_TYPE) ? 128 : ALIGN)
/* Handle #pragma pack. */
#define HANDLE_PRAGMA_PACK 1
...
...
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