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
72579062
Commit
72579062
authored
Feb 18, 2000
by
Nick Clifton
Committed by
Nick Clifton
Feb 18, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Prevent emission of "a.lign 0" directives
From-SVN: r32052
parent
a0f4cca6
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
29 additions
and
10 deletions
+29
-10
gcc/ChangeLog
+8
-0
gcc/config/arm/elf.h
+9
-3
gcc/config/arm/thumb.h
+12
-7
No files found.
gcc/ChangeLog
View file @
72579062
2000
-
02
-
18
Nick
Clifton
<
nickc
@cygnus
.
com
>
*
config
/
arm
/
elf
.
h
(
ASM_OUTPUT_ALIGN
)
:
Do
not
generate
anything
for
an
alignment
of
zero
.
*
config
/
arm
/
thumb
.
h
(
ASM_OUTPUT_ALIGN
)
:
Do
not
generate
anything
for
an
alignment
of
zero
.
2000
-
02
-
18
Martin
von
Loewis
<
loewis
@informatik
.
hu
-
berlin
.
de
>
*
gcc
.
texi
(
Bug
Reporting
)
:
Refer
to
bugs
.
html
.
...
...
gcc/config/arm/elf.h
View file @
72579062
...
...
@@ -356,8 +356,14 @@ dtors_section () \
not defined, the default value is `BIGGEST_ALIGNMENT'. */
#define MAX_OFILE_ALIGNMENT (32768 * 8)
/* Align output to a power of two. */
#define ASM_OUTPUT_ALIGN(STREAM, POWER) \
fprintf (STREAM, "\t.align\t%d\n", POWER)
/* Align output to a power of two. Note ".align 0" is redundant,
and also GAS will treat it as ".align 2" which we do not want. */
#define ASM_OUTPUT_ALIGN(STREAM, POWER) \
do \
{ \
if ((POWER) > 0) \
fprintf (STREAM, "\t.align\t%d\n", POWER); \
} \
while (0)
#include "arm/aout.h"
gcc/config/arm/thumb.h
View file @
72579062
...
...
@@ -139,13 +139,18 @@ extern int target_flags;
#define ASM_OUTPUT_SKIP(STREAM, NBYTES) \
fprintf ((STREAM), "\t.space\t%u\n", (NBYTES))
/* This is how to output an assembler line
that says to advance the location counter
to a multiple of 2**LOG bytes. */
#define ASM_OUTPUT_ALIGN(STREAM,LOG) \
{ \
fprintf (STREAM, "\t.align\t%d\n", (LOG)); \
}
/* This is how to output an assembler line that says to advance the
location counter to a multiple of 2**LOG bytes. Advancing to the
nearest 1 byte boundary is redundant, and anyway the assembler would
treat it as meaning "advance to nearest 4 byte boundary", which we do
not want. */
#define ASM_OUTPUT_ALIGN(STREAM,LOG) \
do \
{ \
if ((LOG) > 0) \
fprintf (STREAM, "\t.align\t%d\n", LOG); \
} \
while (0)
/* Output a common block */
#define ASM_OUTPUT_COMMON(STREAM, NAME, SIZE, ROUNDED) \
...
...
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