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
5c43aed8
Commit
5c43aed8
authored
May 20, 1994
by
Jim Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(MAKE_LINE_SAFE): Delete.
(ASM_OUTPUT_LBB, ASM_OUTPUT_LBE): Don't use MAKE_LINE_SAFE. From-SVN: r7343
parent
6399ee02
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
14 deletions
+2
-14
gcc/xcoffout.c
+2
-14
No files found.
gcc/xcoffout.c
View file @
5c43aed8
...
@@ -73,10 +73,6 @@ char *xcoff_private_data_section_name;
...
@@ -73,10 +73,6 @@ char *xcoff_private_data_section_name;
char
*
xcoff_read_only_section_name
;
char
*
xcoff_read_only_section_name
;
/* Macro definitions used below. */
/* Macro definitions used below. */
/* Ensure we don't output a negative line number. */
#define MAKE_LINE_SAFE(LINE) \
if (LINE <= xcoff_begin_function_line) \
LINE = xcoff_begin_function_line + 1 \
#define ASM_OUTPUT_LFB(FILE,LINENUM) \
#define ASM_OUTPUT_LFB(FILE,LINENUM) \
{ \
{ \
...
@@ -97,18 +93,10 @@ char *xcoff_read_only_section_name;
...
@@ -97,18 +93,10 @@ char *xcoff_read_only_section_name;
} while (0)
} while (0)
#define ASM_OUTPUT_LBB(FILE,LINENUM,BLOCKNUM) \
#define ASM_OUTPUT_LBB(FILE,LINENUM,BLOCKNUM) \
do { \
fprintf (FILE, "\t.bb\t%d\n", ABS_OR_RELATIVE_LINENO (LINENUM))
int linenum = LINENUM; \
MAKE_LINE_SAFE (linenum); \
fprintf (FILE, "\t.bb\t%d\n", ABS_OR_RELATIVE_LINENO (linenum)); \
} while (0)
#define ASM_OUTPUT_LBE(FILE,LINENUM,BLOCKNUM) \
#define ASM_OUTPUT_LBE(FILE,LINENUM,BLOCKNUM) \
do { \
fprintf (FILE, "\t.eb\t%d\n", ABS_OR_RELATIVE_LINENO (LINENUM))
int linenum = LINENUM; \
MAKE_LINE_SAFE (linenum); \
fprintf (FILE, "\t.eb\t%d\n", ABS_OR_RELATIVE_LINENO (linenum)); \
} while (0)
/* Support routines for XCOFF debugging info. */
/* Support routines for XCOFF debugging info. */
...
...
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