aboutsummaryrefslogtreecommitdiff
path: root/gcc/xcoffout.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@hxi.com>2002-01-10 16:55:14 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2002-01-10 16:55:14 +0000
commitc203e7fe6283c474745cabdf5a6ba63851c24d55 (patch)
treeda0fc47c67e1c2039adfdc7ebefe2d5318977a42 /gcc/xcoffout.c
parentbcb3bc6d901f28c1ea237584198c89e5aff2a074 (diff)
downloadgcc-c203e7fe6283c474745cabdf5a6ba63851c24d55.zip
gcc-c203e7fe6283c474745cabdf5a6ba63851c24d55.tar.gz
gcc-c203e7fe6283c474745cabdf5a6ba63851c24d55.tar.bz2
varasm.c: Fix formatting.
* varasm.c: Fix formatting. * varray.c: Likewise. * vmsdbgout.c: Likewise. * xcoffout.c: Likewise. From-SVN: r48735
Diffstat (limited to 'gcc/xcoffout.c')
-rw-r--r--gcc/xcoffout.c26
1 files changed, 15 insertions, 11 deletions
diff --git a/gcc/xcoffout.c b/gcc/xcoffout.c
index af7ce98..8396b7b 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))