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
cb1f9d03
Commit
cb1f9d03
authored
Jan 08, 2004
by
Kazuhiro Inaoka
Committed by
Nick Clifton
Jan 08, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(ASM_OUTPUT_ALIGNED_BSS): Actually emit variables in the appropriate bss section.
From-SVN: r75552
parent
53b8fe3e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
13 deletions
+18
-13
gcc/ChangeLog
+5
-0
gcc/config/m32r/m32r.h
+13
-13
No files found.
gcc/ChangeLog
View file @
cb1f9d03
2004-01-08 Kazuhiro Inaoka <inaoka.kazuhiro@renesas.com>
* config/m32r/m32r.h (ASM_OUTPUT_ALIGNED_BSS): Actually emit
variables in the appropriate bss section.
2004-01-09 Alan Modra <amodra@bigpond.net.au>
2004-01-09 Alan Modra <amodra@bigpond.net.au>
* config/rs6000/linux64.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Ensure
* config/rs6000/linux64.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Ensure
...
...
gcc/config/m32r/m32r.h
View file @
cb1f9d03
...
@@ -1748,19 +1748,19 @@ extern char m32r_punct_chars[256];
...
@@ -1748,19 +1748,19 @@ extern char m32r_punct_chars[256];
} \
} \
while (0)
while (0)
/* Like `ASM_OUTPUT_BSS' except takes the required alignment as a
#define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \
separate, explicit argument. If you define this macro, it is used in
do \
place of `ASM_OUTPUT_BSS', and gives you more flexibility in
{ \
handling the required alignment of the variable. The alignment is
if (! TARGET_SDATA_NONE \
specified as the number of bits.
&& (SIZE) > 0 && (SIZE) <= g_switch_value) \
named_section (0, ".sbss", 0); \
For the M32R we need sbss support. */
else \
bss_section (); \
#define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN)
\
ASM_OUTPUT_ALIGN (FILE, floor_log2 (ALIGN / BITS_PER_UNIT));
\
do
\
last_assemble_variable_decl = DECL;
\
{
\
ASM_DECLARE_OBJECT_NAME (FILE, NAME, DECL);
\
ASM_OUTPUT_
ALIGNED_COMMON (FILE, NAME, SIZE, ALIGN);
\
ASM_OUTPUT_
SKIP (FILE, SIZE ? SIZE : 1);
\
} \
}
\
while (0)
while (0)
/* Debugging information. */
/* Debugging information. */
...
...
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