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
cdc58a82
Commit
cdc58a82
authored
Oct 31, 2002
by
Dale Johannesen
Committed by
Dale Johannesen
Oct 31, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Correct formatting in previous patch.
From-SVN: r58692
parent
e381c27a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
8 deletions
+14
-8
gcc/ChangeLog
+4
-0
gcc/config/rs6000/darwin.h
+10
-8
No files found.
gcc/ChangeLog
View file @
cdc58a82
Thu
Oct
31
Dale
Johannesen
<
dalej
@apple
.
com
>
*
config
/
rs6000
/
darwin
.
h
:
Correct
formatting
in
previous
.
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
>
...
...
gcc/config/rs6000/darwin.h
View file @
cdc58a82
...
...
@@ -140,14 +140,16 @@ Boston, MA 02111-1307, USA. */
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);
#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. */
...
...
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