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
30506ece
Commit
30506ece
authored
May 04, 2001
by
Nick Clifton
Committed by
Nick Clifton
May 04, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add alignment parameter to .comm directives for ELF targets.
From-SVN: r41832
parent
df4ae160
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
0 deletions
+15
-0
gcc/ChangeLog
+4
-0
gcc/config/arm/elf.h
+11
-0
No files found.
gcc/ChangeLog
View file @
30506ece
2001
-
05
-
04
Nick
Clifton
<
nickc
@cambridge
.
redhat
.
com
>
*
config
/
arm
/
elf
.
h
(
ASM_OUTPUT_ALIGNED_COMMON
)
:
Define
.
2001
-
05
-
04
Kaveh
R
.
Ghazi
<
ghazi
@caip
.
rutgers
.
edu
>
2001
-
05
-
04
Kaveh
R
.
Ghazi
<
ghazi
@caip
.
rutgers
.
edu
>
*
alpha
.
h
:
NULL_PTR
->
NULL
.
*
alpha
.
h
:
NULL_PTR
->
NULL
.
...
...
gcc/config/arm/elf.h
View file @
30506ece
...
@@ -367,6 +367,17 @@ dtors_section () \
...
@@ -367,6 +367,17 @@ dtors_section () \
} \
} \
while (0)
while (0)
#ifndef ASM_OUTPUT_ALIGNED_COMMON
#define ASM_OUTPUT_ALIGNED_COMMON(STREAM, NAME, SIZE, ALIGN) \
do \
{ \
fprintf (STREAM, "\t.comm\t"); \
assemble_name (STREAM, NAME); \
fprintf (STREAM, ", %d, %d\n", SIZE, ALIGN); \
} \
while (0)
#endif
/* For PIC code we need to explicitly specify (PLT) and (GOT) relocs. */
/* For PIC code we need to explicitly specify (PLT) and (GOT) relocs. */
#define NEED_PLT_RELOC flag_pic
#define NEED_PLT_RELOC flag_pic
#define NEED_GOT_RELOC flag_pic
#define NEED_GOT_RELOC flag_pic
...
...
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