Commit 3a538a66 by Kazu Hirata Committed by Kazu Hirata

dbxout.c: Fix formatting.

	* dbxout.c: Fix formatting.
	* dependence.c: Likewise.
	* df.c: Likewise.
	* diagnostic.c: Likewise.
	* doloop.c: Likewise.
	* dominance.c: Likewise.
	* doschk.c: Likewise.
	* dwarf2asm.c: Likewise.
	* dwarf2out.c: Likewise.
	* dwarfout.c: Likewise.

From-SVN: r53380
parent c9c2cb7c
2002-05-11 Kazu Hirata <kazu@cs.umass.edu>
* dbxout.c: Fix formatting.
* dependence.c: Likewise.
* df.c: Likewise.
* diagnostic.c: Likewise.
* doloop.c: Likewise.
* dominance.c: Likewise.
* doschk.c: Likewise.
* dwarf2asm.c: Likewise.
* dwarf2out.c: Likewise.
* dwarfout.c: Likewise.
2002-05-10 Richard Henderson <rth@redhat.com> 2002-05-10 Richard Henderson <rth@redhat.com>
* final.c (end_final): Tidy whitespace. Don't honor flag_pack_struct. * final.c (end_final): Tidy whitespace. Don't honor flag_pack_struct.
......
...@@ -41,10 +41,12 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA ...@@ -41,10 +41,12 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA
#define obstack_chunk_free free #define obstack_chunk_free free
#define output_formatted_integer(BUFFER, FORMAT, INTEGER) \ #define output_formatted_integer(BUFFER, FORMAT, INTEGER) \
do { \ do \
{ \
sprintf ((BUFFER)->digit_buffer, FORMAT, INTEGER); \ sprintf ((BUFFER)->digit_buffer, FORMAT, INTEGER); \
output_add_string (BUFFER, (BUFFER)->digit_buffer); \ output_add_string (BUFFER, (BUFFER)->digit_buffer); \
} while (0) } \
while (0)
#define output_text_length(BUFFER) (BUFFER)->line_length #define output_text_length(BUFFER) (BUFFER)->line_length
#define is_starting_newline(BUFFER) (output_text_length (BUFFER) == 0) #define is_starting_newline(BUFFER) (output_text_length (BUFFER) == 0)
......
...@@ -119,7 +119,8 @@ static void idoms_to_doms PARAMS ((struct dom_info *, ...@@ -119,7 +119,8 @@ static void idoms_to_doms PARAMS ((struct dom_info *,
/* Helper macro for allocating and initializing an array, /* Helper macro for allocating and initializing an array,
for aesthetic reasons. */ for aesthetic reasons. */
#define init_ar(var, type, num, content) \ #define init_ar(var, type, num, content) \
do { \ do \
{ \
unsigned int i = 1; /* Catch content == i. */ \ unsigned int i = 1; /* Catch content == i. */ \
if (! (content)) \ if (! (content)) \
(var) = (type *) xcalloc ((num), sizeof (type)); \ (var) = (type *) xcalloc ((num), sizeof (type)); \
...@@ -129,7 +130,8 @@ static void idoms_to_doms PARAMS ((struct dom_info *, ...@@ -129,7 +130,8 @@ static void idoms_to_doms PARAMS ((struct dom_info *,
for (i = 0; i < num; i++) \ for (i = 0; i < num; i++) \
(var)[i] = (content); \ (var)[i] = (content); \
} \ } \
} while (0) } \
while (0)
/* Allocate all needed memory in a pessimistic fashion (so we round up). /* Allocate all needed memory in a pessimistic fashion (so we round up).
This initialises the contents of DI, which already must be allocated. */ This initialises the contents of DI, which already must be allocated. */
......
...@@ -345,14 +345,16 @@ static void def_cfa_1 PARAMS ((const char *, ...@@ -345,14 +345,16 @@ static void def_cfa_1 PARAMS ((const char *,
#ifdef SET_ASM_OP #ifdef SET_ASM_OP
#ifndef ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL #ifndef ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL
#define ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL(FILE, SY, HI, LO) \ #define ASM_OUTPUT_DEFINE_LABEL_DIFFERENCE_SYMBOL(FILE, SY, HI, LO) \
do { \ do \
{ \
fprintf (FILE, "%s", SET_ASM_OP); \ fprintf (FILE, "%s", SET_ASM_OP); \
assemble_name (FILE, SY); \ assemble_name (FILE, SY); \
fputc (',', FILE); \ fputc (',', FILE); \
assemble_name (FILE, HI); \ assemble_name (FILE, HI); \
fputc ('-', FILE); \ fputc ('-', FILE); \
assemble_name (FILE, LO); \ assemble_name (FILE, LO); \
} while (0) } \
while (0)
#endif #endif
#endif #endif
......
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