summaryrefslogtreecommitdiff
path: root/gcc/longlong.h
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>2000-02-17 04:40:47 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>2000-02-17 04:40:47 +0000
commita952e94e79d02c5f983d0e9b720fba20242af693 (patch)
tree93a824a2b3bcfaadbb9bcbb75e67cbd6a4bf1142 /gcc/longlong.h
parent6f93336405defdf7ca06f82ec4b2695b6360fda6 (diff)
downloadgcc-a952e94e79d02c5f983d0e9b720fba20242af693.tar.gz
* longlong.h (__clz_tab): Declare as static to match definition.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@32029 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/longlong.h')
-rw-r--r--gcc/longlong.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/gcc/longlong.h b/gcc/longlong.h
index 467175023a2..796ebe2d07f 100644
--- a/gcc/longlong.h
+++ b/gcc/longlong.h
@@ -1,5 +1,5 @@
/* longlong.h -- definitions for mixed size 32/64 bit arithmetic.
- Copyright (C) 1991,92,94,95,96,97,98,99 Free Software Foundation, Inc.
+ Copyright (C) 1991,92,94,95,96,97,98,99, 2000 Free Software Foundation, Inc.
This definition file is free software; you can redistribute it
and/or modify it under the terms of the GNU General Public
@@ -1444,7 +1444,7 @@ UDItype __umulsidi3 (USItype, USItype);
#endif
#if !defined (count_leading_zeros)
-extern const UQItype __clz_tab[];
+static const UQItype __clz_tab[];
#define count_leading_zeros(count, x) \
do { \
UWtype __xr = (x); \