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
7b9032dd
Commit
7b9032dd
authored
Aug 12, 1994
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(expand_anon_union_decl): Fix up the alignment and mode
of the member VAR_DECLs. From-SVN: r7899
parent
55e2b88e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
gcc/stmt.c
+11
-0
No files found.
gcc/stmt.c
View file @
7b9032dd
...
...
@@ -3510,6 +3510,17 @@ expand_anon_union_decl (decl, cleanup, decl_elts)
tree
cleanup_elt
=
TREE_PURPOSE
(
decl_elts
);
enum
machine_mode
mode
=
TYPE_MODE
(
TREE_TYPE
(
decl_elt
));
/* Propagate the union's alignment to the elements. */
DECL_ALIGN
(
decl_elt
)
=
DECL_ALIGN
(
decl
);
/* If the element has BLKmode and the union doesn't, the union is
aligned such that the element doesn't need to have BLKmode, so
change the element's mode to the appropriate one for its size. */
if
(
mode
==
BLKmode
&&
DECL_MODE
(
decl
)
!=
BLKmode
)
DECL_MODE
(
decl_elt
)
=
mode
=
mode_for_size
(
TREE_INT_CST_LOW
(
DECL_SIZE
(
decl_elt
)),
MODE_INT
,
1
);
/* (SUBREG (MEM ...)) at RTL generation time is invalid, so we
instead create a new MEM rtx with the proper mode. */
if
(
GET_CODE
(
x
)
==
MEM
)
...
...
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