diff options
author | Jeffrey A Law <law@cygnus.com> | 1999-09-02 23:55:52 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1999-09-02 17:55:52 -0600 |
commit | b5cc7593728fd7f39446dda95e5705ea593e188b (patch) | |
tree | 43e10aba51b15003f2baa77c56ca8bde38d90faa /libchill/eqps.c | |
parent | ec5288177605758fdca16766bed494923b7255f5 (diff) | |
download | gcc-b5cc7593728fd7f39446dda95e5705ea593e188b.zip gcc-b5cc7593728fd7f39446dda95e5705ea593e188b.tar.gz gcc-b5cc7593728fd7f39446dda95e5705ea593e188b.tar.bz2 |
powerset.h (SET_WORD, [...]): Do not redefine based on USE_CHAR.
* powerset.h (SET_WORD, SET_SHORT, SET_CHAR): Do not redefine based
on USE_CHAR.
(USE_CHAR): No longer define.
* eqps.c ffsetclrps.c flsetclrps.c: Remove !USE_CHARS support.
From-SVN: r29069
Diffstat (limited to 'libchill/eqps.c')
-rw-r--r-- | libchill/eqps.c | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/libchill/eqps.c b/libchill/eqps.c index 97e4269..e0e00db 100644 --- a/libchill/eqps.c +++ b/libchill/eqps.c @@ -55,27 +55,6 @@ __eqpowerset (left, right, bitlength) SET_WORD *right; unsigned long bitlength; { -#ifndef USE_CHARS - if (bitlength <= SET_CHAR_SIZE) - { - SET_CHAR c = *(SET_CHAR *)left ^ *(SET_CHAR *)right; - MASK_UNUSED_CHAR_BITS (&c, bitlength); - return (c == 0) ? 1 : 0; - } - else if (bitlength <= SET_SHORT_SIZE) - { - SET_SHORT c = *(SET_SHORT *)left ^ *(SET_SHORT *)right; - MASK_UNUSED_SHORT_BITS (&c, bitlength); - return (c == 0) ? 1 : 0; - } - else if (bitlength <= SET_WORD_SIZE) - { - SET_WORD c = *(SET_WORD *)left ^ *(SET_WORD *)right; - MASK_UNUSED_WORD_BITS (&c, bitlength % SET_WORD_SIZE); - return (c == 0) ? 1 : 0; - } - else -#endif { SET_WORD c; register unsigned long i; |