Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
cf7d8fd0
Commit
cf7d8fd0
authored
Jul 07, 1992
by
Torbjorn Granlund
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r1505
parent
431b1ee0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
gcc/longlong.h
+7
-7
No files found.
gcc/longlong.h
View file @
cf7d8fd0
...
@@ -15,12 +15,12 @@
...
@@ -15,12 +15,12 @@
along with this program; if not, write to the Free Software
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#ifndef
LONG
_TYPE_SIZE
#ifndef
SI
_TYPE_SIZE
#define
LONG
_TYPE_SIZE 32
#define
SI
_TYPE_SIZE 32
#endif
#endif
#define __BITS4 (
LONG
_TYPE_SIZE / 4)
#define __BITS4 (
SI
_TYPE_SIZE / 4)
#define __ll_B (1L << (
LONG
_TYPE_SIZE / 2))
#define __ll_B (1L << (
SI
_TYPE_SIZE / 2))
#define __ll_lowpart(t) ((USItype) (t) % __ll_B)
#define __ll_lowpart(t) ((USItype) (t) % __ll_B)
#define __ll_highpart(t) ((USItype) (t) / __ll_B)
#define __ll_highpart(t) ((USItype) (t) / __ll_B)
...
@@ -915,7 +915,7 @@ extern const UQItype __clz_tab[];
...
@@ -915,7 +915,7 @@ extern const UQItype __clz_tab[];
USItype __xr = (x); \
USItype __xr = (x); \
USItype __a; \
USItype __a; \
\
\
if (
LONG
_TYPE_SIZE <= 32) \
if (
SI
_TYPE_SIZE <= 32) \
{ \
{ \
__a = __xr < (1<<2*__BITS4) \
__a = __xr < (1<<2*__BITS4) \
? (__xr < (1<<__BITS4) ? 0 : __BITS4) \
? (__xr < (1<<__BITS4) ? 0 : __BITS4) \
...
@@ -923,12 +923,12 @@ extern const UQItype __clz_tab[];
...
@@ -923,12 +923,12 @@ extern const UQItype __clz_tab[];
} \
} \
else \
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) \
if (((__xr >> __a) & 0xff) != 0) \
break; \
break; \
} \
} \
\
\
(count) =
LONG
_TYPE_SIZE - (__clz_tab[__xr >> __a] + __a); \
(count) =
SI
_TYPE_SIZE - (__clz_tab[__xr >> __a] + __a); \
} while (0)
} while (0)
#endif
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment