Commit 5c43aed8 by Jim Wilson

(MAKE_LINE_SAFE): Delete.

(ASM_OUTPUT_LBB, ASM_OUTPUT_LBE): Don't use MAKE_LINE_SAFE.

From-SVN: r7343
parent 6399ee02
...@@ -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. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment