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
e381c27a
Commit
e381c27a
authored
Oct 31, 2002
by
Dale Johannesen
Committed by
Dale Johannesen
Oct 31, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
enable -falign-xxx flags
From-SVN: r58690
parent
3b5b4904
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
0 deletions
+17
-0
gcc/ChangeLog
+4
-0
gcc/config/rs6000/darwin.h
+13
-0
No files found.
gcc/ChangeLog
View file @
e381c27a
Thu
Oct
31
Dale
Johannesen
<
dalej
@apple
.
com
>
*
config
/
rs6000
/
darwin
.
h
:
Enable
-
falign
-
xxx
options
.
Thu
Oct
31
18
:
08
:
00
CET
2002
Jan
Hubicka
<
jh
@suse
.
cz
>
Thu
Oct
31
18
:
08
:
00
CET
2002
Jan
Hubicka
<
jh
@suse
.
cz
>
*
i386
.
c
(
override_options
)
:
Set
defaults
for
flag_omit_frame_pointer
,
*
i386
.
c
(
override_options
)
:
Set
defaults
for
flag_omit_frame_pointer
,
...
...
gcc/config/rs6000/darwin.h
View file @
e381c27a
...
@@ -136,6 +136,19 @@ Boston, MA 02111-1307, USA. */
...
@@ -136,6 +136,19 @@ Boston, MA 02111-1307, USA. */
#define RESTORE_FP_PREFIX "._restf"
#define RESTORE_FP_PREFIX "._restf"
#define RESTORE_FP_SUFFIX ""
#define RESTORE_FP_SUFFIX ""
/* This is how to output an assembler line that says to advance
the location counter to a multiple of 2**LOG bytes using the
"nop" instruction as padding. */
#define ASM_OUTPUT_ALIGN_WITH_NOP(FILE,LOG) \
do { \
if ((LOG) < 3) { \
ASM_OUTPUT_ALIGN (FILE,LOG); \
} \
else
/* nop == ori r0,r0,0 */
\
fprintf (FILE, "\t.align32 %d,0x60000000\n", (LOG)); \
} while (0);
/* Generate insns to call the profiler. */
/* Generate insns to call the profiler. */
#define PROFILE_HOOK(LABEL) output_profile_hook (LABEL)
#define PROFILE_HOOK(LABEL) output_profile_hook (LABEL)
...
...
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