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
b4992641
Commit
b4992641
authored
Oct 18, 2004
by
Richard Henderson
Committed by
Richard Henderson
Oct 18, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* pointer-set.c (hash1): Don't use libm functions in fallback case.
From-SVN: r89231
parent
f072a5c8
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
+7
-4
gcc/ChangeLog
+4
-0
gcc/pointer-set.c
+3
-4
No files found.
gcc/ChangeLog
View file @
b4992641
2004
-
10
-
18
Richard
Henderson
<
rth
@
redhat
.
com
>
*
pointer
-
set
.
c
(
hash1
):
Don
't use libm functions in fallback case.
2004-10-18 H.J. Lu <hongjiu.lu@intel.com>
PR bootstrap/17684
...
...
gcc/pointer-set.c
View file @
b4992641
...
...
@@ -61,11 +61,10 @@ hash1 (const void *p, unsigned long max, unsigned long logmax)
#elif HOST_BITS_PER_LONG == 64
const
unsigned
long
A
=
0x9e3779b97f4a7c16ul
;
#else
const
double
M
=
(
ULONG_MAX
+
1
.
0
);
const
double
B
=
M
/
((
sqrt
(
5
)
-
1
)
/
2
.
0
);
const
unsigned
long
A
=
B
-
(
floor
(
B
/
M
)
*
M
);
const
unsigned
long
A
=
(
ULONG_MAX
+
1
.
0L
)
*
0
.
6180339887498948482045868343656381177203L
;
#endif
const
unsigned
long
shift
=
sizeof
(
unsigned
long
)
*
CHAR_BIT
-
logmax
;
const
unsigned
long
shift
=
HOST_BITS_PER_LONG
-
logmax
;
return
((
A
*
(
unsigned
long
)
p
)
>>
shift
)
&
(
max
-
1
);
}
...
...
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