diff options
author | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-10 16:55:14 +0000 |
---|---|---|
committer | kazu <kazu@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-01-10 16:55:14 +0000 |
commit | 85db55910679c4ecc499bcef88b1aaca057a2b58 (patch) | |
tree | da0fc47c67e1c2039adfdc7ebefe2d5318977a42 /gcc/xcoffout.c | |
parent | d2855ea6b0431e8e07a32a871c642966d8ae2e5f (diff) | |
download | gcc-85db55910679c4ecc499bcef88b1aaca057a2b58.tar.gz |
* varasm.c: Fix formatting.
* varray.c: Likewise.
* vmsdbgout.c: Likewise.
* xcoffout.c: Likewise.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48735 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/xcoffout.c')
-rw-r--r-- | gcc/xcoffout.c | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/gcc/xcoffout.c b/gcc/xcoffout.c index af7ce98ab23..8396b7b334c 100644 --- a/gcc/xcoffout.c +++ b/gcc/xcoffout.c @@ -1,5 +1,5 @@ /* Output xcoff-format symbol table information from GNU compiler. - Copyright (C) 1992, 1994, 1995, 1997, 1998, 1999, 2000 + Copyright (C) 1992, 1994, 1995, 1997, 1998, 1999, 2000, 2002 Free Software Foundation, Inc. This file is part of GCC. @@ -75,11 +75,13 @@ const char *xcoff_lastfile; ((xcoff_inlining) ? (LINENO) : (LINENO) - xcoff_begin_function_line) /* Output source line numbers via ".line" rather than ".stabd". */ -#define ASM_OUTPUT_SOURCE_LINE(FILE,LINENUM) \ - do { \ - if (xcoff_begin_function_line >= 0) \ - fprintf (FILE, "\t.line\t%d\n", ABS_OR_RELATIVE_LINENO (LINENUM)); \ - } while (0) +#define ASM_OUTPUT_SOURCE_LINE(FILE,LINENUM) \ + do \ + { \ + if (xcoff_begin_function_line >= 0) \ + fprintf (FILE, "\t.line\t%d\n", ABS_OR_RELATIVE_LINENO (LINENUM)); \ + } \ + while (0) #define ASM_OUTPUT_LFB(FILE,LINENUM) \ { \ @@ -93,11 +95,13 @@ const char *xcoff_lastfile; ? xcoff_current_include_file : main_input_filename); \ } -#define ASM_OUTPUT_LFE(FILE,LINENUM) \ - do { \ - fprintf (FILE, "\t.ef\t%d\n", (LINENUM)); \ - xcoff_begin_function_line = -1; \ - } while (0) +#define ASM_OUTPUT_LFE(FILE,LINENUM) \ + do \ + { \ + fprintf (FILE, "\t.ef\t%d\n", (LINENUM)); \ + xcoff_begin_function_line = -1; \ + } \ + while (0) #define ASM_OUTPUT_LBB(FILE,LINENUM,BLOCKNUM) \ fprintf (FILE, "\t.bb\t%d\n", ABS_OR_RELATIVE_LINENO (LINENUM)) |