diff options
author | tege <tege@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-07-07 20:24:49 +0000 |
---|---|---|
committer | tege <tege@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-07-07 20:24:49 +0000 |
commit | 093ed7f657f57c6d6d8481306ef1eaa9045d1344 (patch) | |
tree | b70916f1f4f9bf1baade862ef4a3f27ca93e6e47 /gcc/longlong.h | |
parent | ba628a68999a95ff425fb685952b72ddc4bd7b48 (diff) | |
download | gcc-093ed7f657f57c6d6d8481306ef1eaa9045d1344.tar.gz |
*** empty log message ***
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@1505 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/longlong.h')
-rw-r--r-- | gcc/longlong.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gcc/longlong.h b/gcc/longlong.h index fbee4079711..20c4099f2a7 100644 --- a/gcc/longlong.h +++ b/gcc/longlong.h @@ -15,12 +15,12 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#ifndef LONG_TYPE_SIZE -#define LONG_TYPE_SIZE 32 +#ifndef SI_TYPE_SIZE +#define SI_TYPE_SIZE 32 #endif -#define __BITS4 (LONG_TYPE_SIZE / 4) -#define __ll_B (1L << (LONG_TYPE_SIZE / 2)) +#define __BITS4 (SI_TYPE_SIZE / 4) +#define __ll_B (1L << (SI_TYPE_SIZE / 2)) #define __ll_lowpart(t) ((USItype) (t) % __ll_B) #define __ll_highpart(t) ((USItype) (t) / __ll_B) @@ -915,7 +915,7 @@ extern const UQItype __clz_tab[]; USItype __xr = (x); \ USItype __a; \ \ - if (LONG_TYPE_SIZE <= 32) \ + if (SI_TYPE_SIZE <= 32) \ { \ __a = __xr < (1<<2*__BITS4) \ ? (__xr < (1<<__BITS4) ? 0 : __BITS4) \ @@ -923,12 +923,12 @@ extern const UQItype __clz_tab[]; } \ else \ { \ - for (__a = LONG_TYPE_SIZE - 8; __a > 0; __a -= 8) \ + for (__a = SI_TYPE_SIZE - 8; __a > 0; __a -= 8) \ if (((__xr >> __a) & 0xff) != 0) \ break; \ } \ \ - (count) = LONG_TYPE_SIZE - (__clz_tab[__xr >> __a] + __a); \ + (count) = SI_TYPE_SIZE - (__clz_tab[__xr >> __a] + __a); \ } while (0) #endif |