diff options
author | Aaron Lehmann <aaronl@vitelus.com> | 2002-06-29 21:14:21 +0000 |
---|---|---|
committer | Aldy Hernandez <aldyh@gcc.gnu.org> | 2002-06-29 21:14:21 +0000 |
commit | 7bfb14f14f31945eac4c454dc339a652593ba685 (patch) | |
tree | 84bae082a6378eb014596a5fa11b3974f3c255df /gcc | |
parent | 5ddf82b4c715a3382a2e0b558f465e6a35eb8bb4 (diff) | |
download | gcc-7bfb14f14f31945eac4c454dc339a652593ba685.zip gcc-7bfb14f14f31945eac4c454dc339a652593ba685.tar.gz gcc-7bfb14f14f31945eac4c454dc339a652593ba685.tar.bz2 |
fold-cont.c: Remove unused CHARMASK.
2002-06-28 Aaron Lehmann <aaronl@vitelus.com>
* fold-cont.c: Remove unused CHARMASK.
From-SVN: r55106
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/fold-const.c | 7 |
2 files changed, 4 insertions, 7 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 0b2de72..75d599d 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2002-06-28 Aaron Lehmann <aaronl@vitelus.com> + + * fold-cont.c: Remove unused CHARMASK. + 2002-06-29 Neil Booth <neil@daikokuya.co.uk> PR preprocessor/7150 diff --git a/gcc/fold-const.c b/gcc/fold-const.c index f9f3a64..72266c5 100644 --- a/gcc/fold-const.c +++ b/gcc/fold-const.c @@ -110,13 +110,6 @@ static tree fold_binary_op_with_conditional_arg PARAMS ((enum tree_code, tree, tree, tree, int)); static bool fold_real_zero_addition_p PARAMS ((tree, tree, int)); -#if defined(HOST_EBCDIC) -/* bit 8 is significant in EBCDIC */ -#define CHARMASK 0xff -#else -#define CHARMASK 0x7f -#endif - /* The following constants represent a bit based encoding of GCC's comparison operators. This encoding simplifies transformations on relational comparison operators, such as AND and OR. */ |