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
fdc2d3b0
Commit
fdc2d3b0
authored
Apr 26, 2001
by
Nick Clifton
Committed by
Nick Clifton
Apr 26, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Define ASM_OUTPUT_MAX_SKIP_ALIGN if the assembler supports .p2align.
From-SVN: r41591
parent
5677efb0
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
0 deletions
+20
-0
gcc/ChangeLog
+5
-0
gcc/config/arm/arm.h
+15
-0
No files found.
gcc/ChangeLog
View file @
fdc2d3b0
2001
-
04
-
26
Nick
Clifton
<
nickc
@cambridge
.
redhat
.
com
>
*
config
/
arm
/
arm
.
h
(
ASM_OUTPUT_MAX_SKIP_ALIGN
)
:
Define
,
if
the
assembler
supports
.
p2align
.
2001
-
04
-
26
Nathan
Sidwell
<
nathan
@codesourcery
.
com
>
*
c
-
lex
.
c
(
c_lex
)
:
Remove
#
from
%
o
diagnostic
formatting
.
...
...
gcc/config/arm/arm.h
View file @
fdc2d3b0
...
...
@@ -2704,6 +2704,21 @@ extern int making_const_table;
} \
while (0)
#ifdef HAVE_GAS_MAX_SKIP_P2ALIGN
/* To support -falign-* switches we need to use .p2align so
that alignment directives in code sections will be padded
with no-op instructions, rather than zeroes. */
#define ASM_OUTPUT_MAX_SKIP_ALIGN(FILE,LOG,MAX_SKIP) \
if ((LOG) != 0) \
{ \
if ((MAX_SKIP) == 0) \
fprintf ((FILE), "\t.p2align %d\n", (LOG)); \
else \
fprintf ((FILE), "\t.p2align %d,,%d\n", \
(LOG), (MAX_SKIP)); \
}
#endif
/* Target characters. */
#define TARGET_BELL 007
#define TARGET_BS 010
...
...
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