aboutsummaryrefslogtreecommitdiff
path: root/gcc/sdbout.c
diff options
context:
space:
mode:
authorKazu Hirata <kazu@hxi.com>2002-01-22 14:33:35 +0000
committerKazu Hirata <kazu@gcc.gnu.org>2002-01-22 14:33:35 +0000
commitcf40364820f180bdb35437db31cdfb21ba0b0142 (patch)
tree47eb45334226fa8effd3bd4990f8351716b2e206 /gcc/sdbout.c
parenta8765ae7a090cfbc12b41f643938fdd17a3c0dec (diff)
downloadgcc-cf40364820f180bdb35437db31cdfb21ba0b0142.zip
gcc-cf40364820f180bdb35437db31cdfb21ba0b0142.tar.gz
gcc-cf40364820f180bdb35437db31cdfb21ba0b0142.tar.bz2
predict.c: Fix formatting.
* predict.c: Fix formatting. * print-tree.c: Likewise. * protoize.c: Likewise. * real.h: Likewise. * rtl.h: Likewise. * sbitmap.h: Likewise. * scan.c: Likewise. * sched-deps.c: Likewise. * sched-vis.c: Likewise. * sdbout.c: Likewise. * sibcall.c: Likewise. * ssa.c: Likewise. * ssa-ccp.c: Likewise. * ssa-dce.c: Likewise. * stmt.c: Likewise. * stor-layout.c: Likewise. * system.h: Likewise. From-SVN: r49074
Diffstat (limited to 'gcc/sdbout.c')
-rw-r--r--gcc/sdbout.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/gcc/sdbout.c b/gcc/sdbout.c
index 91f92aa..8405c0a 100644
--- a/gcc/sdbout.c
+++ b/gcc/sdbout.c
@@ -1,6 +1,6 @@
/* Output sdb-format symbol table information from GNU compiler.
Copyright (C) 1988, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
- 2000, 2001 Free Software Foundation, Inc.
+ 2000, 2001, 2002 Free Software Foundation, Inc.
This file is part of GCC.
@@ -150,7 +150,7 @@ static void sdbout_global_decl PARAMS ((tree));
#define PUT_SDB_INT_VAL(a) \
do { \
fputs ("\t.val\t", asm_out_file); \
- fprintf (asm_out_file, HOST_WIDE_INT_PRINT_DEC, (HOST_WIDE_INT)(a)); \
+ fprintf (asm_out_file, HOST_WIDE_INT_PRINT_DEC, (HOST_WIDE_INT) (a)); \
fprintf (asm_out_file, "%s", SDB_DELIM); \
} while (0)
@@ -186,7 +186,7 @@ do { fprintf (asm_out_file, "\t.def\t"); \
#define PUT_SDB_SIZE(a) \
do { \
fputs ("\t.size\t", asm_out_file); \
- fprintf (asm_out_file, HOST_WIDE_INT_PRINT_DEC, (HOST_WIDE_INT)(a)); \
+ fprintf (asm_out_file, HOST_WIDE_INT_PRINT_DEC, (HOST_WIDE_INT) (a)); \
fprintf (asm_out_file, "%s", SDB_DELIM); \
} while(0)
#endif
@@ -381,9 +381,9 @@ gen_fake_label ()
PREV is the number describing the target, value or element type.
DT_type describes how to transform that type. */
#define PUSH_DERIVED_LEVEL(DT_type,PREV) \
- ((((PREV) & ~(int)N_BTMASK) << (int)N_TSHIFT) \
- | ((int)DT_type << (int)N_BTSHFT) \
- | ((PREV) & (int)N_BTMASK))
+ ((((PREV) & ~(int) N_BTMASK) << (int) N_TSHIFT) \
+ | ((int) DT_type << (int) N_BTSHFT) \
+ | ((PREV) & (int) N_BTMASK))
/* Number of elements used in sdb_dims. */
static int sdb_n_dims = 0;