diff options
author | Kazu Hirata <kazu@hxi.com> | 2002-01-10 16:55:14 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@gcc.gnu.org> | 2002-01-10 16:55:14 +0000 |
commit | c203e7fe6283c474745cabdf5a6ba63851c24d55 (patch) | |
tree | da0fc47c67e1c2039adfdc7ebefe2d5318977a42 /gcc/varasm.c | |
parent | bcb3bc6d901f28c1ea237584198c89e5aff2a074 (diff) | |
download | gcc-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/varasm.c')
-rw-r--r-- | gcc/varasm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/varasm.c b/gcc/varasm.c index c753410..3ad7850 100644 --- a/gcc/varasm.c +++ b/gcc/varasm.c @@ -2425,7 +2425,7 @@ static struct constant_descriptor *const_hash_table[MAX_HASH_TABLE]; they are actually used. This will be if something takes its address or if there is a usage of the string in the RTL of a function. */ -#define STRHASH(x) ((hashval_t)((long)(x) >> 3)) +#define STRHASH(x) ((hashval_t) ((long) (x) >> 3)) struct deferred_string { @@ -2590,7 +2590,7 @@ const_hash (exp) else if (GET_CODE (value.base) == LABEL_REF) hi = value.offset + CODE_LABEL_NUMBER (XEXP (value.base, 0)) * 13; else - abort(); + abort (); hi &= (1 << HASHBITS) - 1; hi %= MAX_HASH_TABLE; |