OSDN Git Service

(MAKE_LINE_SAFE): Delete.
authorwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 20 May 1994 16:48:11 +0000 (16:48 +0000)
committerwilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4>
Fri, 20 May 1994 16:48:11 +0000 (16:48 +0000)
(ASM_OUTPUT_LBB, ASM_OUTPUT_LBE): Don't use MAKE_LINE_SAFE.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@7343 138bc75d-0d04-0410-961f-82ee72b054a4

gcc/xcoffout.c

index b586a8f..1416708 100644 (file)
@@ -73,10 +73,6 @@ char *xcoff_private_data_section_name;
 char *xcoff_read_only_section_name;
 \f
 /* 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) \
 {                                              \
@@ -97,18 +93,10 @@ char *xcoff_read_only_section_name;
   } while (0)
 
 #define ASM_OUTPUT_LBB(FILE,LINENUM,BLOCKNUM) \
-  do {                                         \
-    int linenum = LINENUM;                             \
-    MAKE_LINE_SAFE (linenum);                  \
-    fprintf (FILE, "\t.bb\t%d\n", ABS_OR_RELATIVE_LINENO (linenum)); \
-  } while (0)
+  fprintf (FILE, "\t.bb\t%d\n", ABS_OR_RELATIVE_LINENO (LINENUM))
 
 #define ASM_OUTPUT_LBE(FILE,LINENUM,BLOCKNUM) \
-  do {                                         \
-    int linenum = LINENUM;                             \
-    MAKE_LINE_SAFE (linenum);                  \
-    fprintf (FILE, "\t.eb\t%d\n", ABS_OR_RELATIVE_LINENO (linenum)); \
-  } while (0)
+  fprintf (FILE, "\t.eb\t%d\n", ABS_OR_RELATIVE_LINENO (LINENUM))
 \f
 /* Support routines for XCOFF debugging info.  */