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
14ab9f52
Commit
14ab9f52
authored
Oct 07, 1998
by
Nick Clifton
Committed by
Nick Clifton
Oct 07, 1998
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Do not insert packing attributes unless #pragma pack(push,<n>) is active.
From-SVN: r22894
parent
10a9f2be
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletions
+7
-1
gcc/ChangeLog
+5
-0
gcc/c-pragma.c
+2
-1
No files found.
gcc/ChangeLog
View file @
14ab9f52
Wed
Oct
7
14
:
40
:
43
1998
Nick
Clifton
<
nickc
@cygnus
.
com
>
*
c
-
pragma
.
c
(
insert_pack_attributes
)
:
Do
not
insert
attributes
unless
#
pragma
pack
(
push
,
<
n
>
)
is
in
effect
.
Wed
Oct
7
12
:
10
:
46
1998
Jim
Wilson
<
wilson
@cygnus
.
com
>
*
expr
.
c
(
emit_group_store
)
:
Handle
a
PARALLEL
destination
.
...
...
gcc/c-pragma.c
View file @
14ab9f52
...
...
@@ -146,7 +146,8 @@ insert_pack_attributes (node, attributes, prefix)
tree
a
;
/* If we are not packing, then there is nothing to do. */
if
(
maximum_field_alignment
==
0
)
if
(
maximum_field_alignment
==
0
||
alignment_stack
==
NULL
)
return
;
/* We are only interested in fields. */
...
...
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