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
0ce200e5
Commit
0ce200e5
authored
Jul 17, 1997
by
Jason Merrill
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x
From-SVN: r14465
parent
101d9529
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
4 deletions
+14
-4
gcc/config/i960/i960.h
+14
-4
No files found.
gcc/config/i960/i960.h
View file @
0ce200e5
...
@@ -1382,10 +1382,20 @@ extern struct rtx_def *gen_compare_reg ();
...
@@ -1382,10 +1382,20 @@ extern struct rtx_def *gen_compare_reg ();
( fputs (".bss\t", (FILE)), \
( fputs (".bss\t", (FILE)), \
assemble_name ((FILE), (NAME)), \
assemble_name ((FILE), (NAME)), \
fprintf ((FILE), ",%d,%d\n", (SIZE), \
fprintf ((FILE), ",%d,%d\n", (SIZE), \
((ALIGN) <= 8 ? 0 \
(floor_log2 ((ALIGN) / BITS_PER_UNIT))))
: ((ALIGN) <= 16 ? 1 \
: ((ALIGN) <= 32 ? 2 \
/* A C statement (sans semicolon) to output to the stdio stream
: ((ALIGN <= 64 ? 3 : 4)))))))
FILE the assembler definition of uninitialized global DECL named
NAME whose size is SIZE bytes and alignment is ALIGN bytes.
Try to use asm_output_aligned_bss to implement this macro. */
#define ASM_OUTPUT_ALIGNED_BSS(FILE, DECL, NAME, SIZE, ALIGN) \
do { \
fputs (".globl ", (FILE)); \
assemble_name ((FILE), (NAME)); \
fputs ("\n", (FILE)); \
ASM_OUTPUT_ALIGNED_LOCAL (FILE, NAME, SIZE, ALIGN); \
} while (0)
/* Output text for an #ident directive. */
/* Output text for an #ident directive. */
#define ASM_OUTPUT_IDENT(FILE, STR) fprintf(FILE, "\t# %s\n", STR);
#define ASM_OUTPUT_IDENT(FILE, STR) fprintf(FILE, "\t# %s\n", STR);
...
...
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