This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] [TRIVIAL] Remove CHARMASK from fold-const.c


Hi,

The patch below gets rid of a definition of CHARMASK in fold-cost.c
that is never used. An identical definition exsist in real.c and is
actuallty referenced there.

2002-06-28  Aaron Lehmann  <aaronl@vitelus.com>

	* fold-cont.c: Remove unused CHARMASK.

*** fold-const.c        15 Jun 2002 16:55:23 -0000      1.213
--- fold-const.c        29 Jun 2002 03:57:40 -0000
***************
*** 110,122 ****
    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.  */
--- 110,115 ----


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]