summaryrefslogtreecommitdiffstats
path: root/gcc/longlong.h
diff options
context:
space:
mode:
authortege <tege@138bc75d-0d04-0410-961f-82ee72b054a4>1992-07-07 20:24:49 +0000
committertege <tege@138bc75d-0d04-0410-961f-82ee72b054a4>1992-07-07 20:24:49 +0000
commit093ed7f657f57c6d6d8481306ef1eaa9045d1344 (patch)
treeb70916f1f4f9bf1baade862ef4a3f27ca93e6e47 /gcc/longlong.h
parentba628a68999a95ff425fb685952b72ddc4bd7b48 (diff)
downloadppe42-gcc-093ed7f657f57c6d6d8481306ef1eaa9045d1344.tar.gz
ppe42-gcc-093ed7f657f57c6d6d8481306ef1eaa9045d1344.zip
*** 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.h14
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
OpenPOWER on IntegriCloud