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
1a7b4c69
Commit
1a7b4c69
authored
Mar 15, 2000
by
Jason Merrill
Committed by
Jason Merrill
Mar 15, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* cpphash.c (dump_hash_helper): Take the slot, not the element.
From-SVN: r32566
parent
2ca19d5e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
3 deletions
+9
-3
gcc/ChangeLog
+6
-0
gcc/cpphash.c
+3
-3
No files found.
gcc/ChangeLog
View file @
1a7b4c69
2000
-
03
-
15
Jason
Merrill
<
jason
@casey
.
cygnus
.
com
>
*
cpphash
.
c
(
dump_hash_helper
)
:
Take
the
slot
,
not
the
element
.
Wed
Mar
15
14
:
28
:
54
2000
Jason
Eckhardt
<
jle
@cygnus
.
com
>
Wed
Mar
15
14
:
28
:
54
2000
Jason
Eckhardt
<
jle
@cygnus
.
com
>
*
flow
.
c
(
verify_flow_info
)
:
Check
for
unconditional
return
.
*
flow
.
c
(
verify_flow_info
)
:
Check
for
unconditional
return
.
...
@@ -37,11 +41,13 @@ Wed Mar 15 13:07:05 MET 2000 Jan Hubicka <jh@suse.cz>
...
@@ -37,11 +41,13 @@ Wed Mar 15 13:07:05 MET 2000 Jan Hubicka <jh@suse.cz>
QUAL_UNION_TYPE
handling
.
QUAL_UNION_TYPE
handling
.
Wed
Feb
23
13
:
00
:
06
CET
2000
Jan
Hubicka
<
jh
@suse
.
cz
>
Wed
Feb
23
13
:
00
:
06
CET
2000
Jan
Hubicka
<
jh
@suse
.
cz
>
*
flow
.
c
(
fixup_reorder_chain
)
:
Avoid
double
labels
in
the
basic
block
;
*
flow
.
c
(
fixup_reorder_chain
)
:
Avoid
double
labels
in
the
basic
block
;
end
of
basic
block
is
jump_insn
,
not
barrier
;
use
create_basic_block
end
of
basic
block
is
jump_insn
,
not
barrier
;
use
create_basic_block
instead
of
creating
basic
block
by
hand
.
instead
of
creating
basic
block
by
hand
.
2000
-
03
-
14
Jason
Eckhardt
<
jle
@cygnus
.
com
>
2000
-
03
-
14
Jason
Eckhardt
<
jle
@cygnus
.
com
>
*
flow
.
c
(
reorder_basic_blocks
)
:
Account
for
barriers
when
writing
*
flow
.
c
(
reorder_basic_blocks
)
:
Account
for
barriers
when
writing
over
NEXT_INSN
(
last_bb
->
end
).
over
NEXT_INSN
(
last_bb
->
end
).
(
verify_flow_info
)
:
Add
check
for
missing
barriers
.
(
verify_flow_info
)
:
Add
check
for
missing
barriers
.
...
...
gcc/cpphash.c
View file @
1a7b4c69
...
@@ -33,7 +33,7 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
...
@@ -33,7 +33,7 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
static
unsigned
int
hash_HASHNODE
PARAMS
((
const
void
*
));
static
unsigned
int
hash_HASHNODE
PARAMS
((
const
void
*
));
static
int
eq_HASHNODE
PARAMS
((
const
void
*
,
const
void
*
));
static
int
eq_HASHNODE
PARAMS
((
const
void
*
,
const
void
*
));
static
void
del_HASHNODE
PARAMS
((
void
*
));
static
void
del_HASHNODE
PARAMS
((
void
*
));
static
int
dump_hash_helper
PARAMS
((
void
*
,
void
*
));
static
int
dump_hash_helper
PARAMS
((
void
*
*
,
void
*
));
static
int
comp_def_part
PARAMS
((
int
,
U_CHAR
*
,
int
,
U_CHAR
*
,
static
int
comp_def_part
PARAMS
((
int
,
U_CHAR
*
,
int
,
U_CHAR
*
,
int
,
int
));
int
,
int
));
...
@@ -1722,10 +1722,10 @@ _cpp_dump_definition (pfile, sym, len, defn)
...
@@ -1722,10 +1722,10 @@ _cpp_dump_definition (pfile, sym, len, defn)
/* Dump out the hash table. */
/* Dump out the hash table. */
static
int
static
int
dump_hash_helper
(
h
,
p
)
dump_hash_helper
(
h
,
p
)
void
*
h
;
void
*
*
h
;
void
*
p
;
void
*
p
;
{
{
HASHNODE
*
hp
=
(
HASHNODE
*
)
h
;
HASHNODE
*
hp
=
(
HASHNODE
*
)
*
h
;
cpp_reader
*
pfile
=
(
cpp_reader
*
)
p
;
cpp_reader
*
pfile
=
(
cpp_reader
*
)
p
;
if
(
hp
->
type
==
T_MACRO
)
if
(
hp
->
type
==
T_MACRO
)
...
...
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