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
17d6fedc
Commit
17d6fedc
authored
May 01, 1996
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(ASM_OUTPUT_ALIGNED_BSS): Define.
From-SVN: r11911
parent
e1aa1a6c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
0 deletions
+23
-0
gcc/config/i386/linux.h
+8
-0
gcc/config/i386/sysv4.h
+8
-0
gcc/config/sparc/sysv4.h
+7
-0
No files found.
gcc/config/i386/linux.h
View file @
17d6fedc
...
...
@@ -194,3 +194,11 @@ Boston, MA 02111-1307, USA. */
/* Get perform_* macros to build libgcc.a. */
#include "i386/perform.h"
/* A C statement (sans semicolon) to output to the stdio stream
FILE the assembler definition of an uninitialized global label named
NAME whose size is SIZE bytes and alignment is ALIGN bytes.
Try to use asm_output_aligned_bss to implement this macro. */
#define ASM_OUTPUT_ALIGNED_BSS(FILE, NAME, SIZE, ALIGN) \
asm_output_aligned_bss (FILE, NAME, SIZE, ALIGN)
gcc/config/i386/sysv4.h
View file @
17d6fedc
...
...
@@ -243,3 +243,11 @@ do { long value[3]; \
necessary when compiling PIC code. */
#define JUMP_TABLES_IN_TEXT_SECTION
/* A C statement (sans semicolon) to output to the stdio stream
FILE the assembler definition of an uninitialized global label named
NAME whose size is SIZE bytes and alignment is ALIGN bytes.
Try to use asm_output_aligned_bss to implement this macro. */
#define ASM_OUTPUT_ALIGNED_BSS(FILE, NAME, SIZE, ALIGN) \
asm_output_aligned_bss (FILE, NAME, SIZE, ALIGN)
gcc/config/sparc/sysv4.h
View file @
17d6fedc
...
...
@@ -261,3 +261,10 @@ do { long value[4]; \
4 * blockn, 4 * blockn, 4 * blockn); \
}
/* A C statement (sans semicolon) to output to the stdio stream
FILE the assembler definition of an uninitialized global label named
NAME whose size is SIZE bytes and alignment is ALIGN bytes.
Try to use asm_output_aligned_bss to implement this macro. */
#define ASM_OUTPUT_ALIGNED_BSS(FILE, NAME, SIZE, ALIGN) \
asm_output_aligned_bss (FILE, NAME, SIZE, ALIGN)
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