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
3b03c671
Commit
3b03c671
authored
May 03, 2002
by
Kazu Hirata
Committed by
Kazu Hirata
May 03, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
regrename.c: Fix formatting.
* regrename.c: Fix formatting. * tree.c: Likewise. From-SVN: r53088
parent
3b4961bd
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
6 deletions
+11
-6
gcc/ChangeLog
+5
-0
gcc/regrename.c
+0
-0
gcc/tree.c
+6
-6
No files found.
gcc/ChangeLog
View file @
3b03c671
2002-05-03 Kazu Hirata <kazu@cs.umass.edu>
* regrename.c: Fix formatting.
* tree.c: Likewise.
Fri May 3 13:34:43 CEST 2002 Jan Hubicka <jh@suse.cz>
* i386.md (attribute memory): Handle compares properly.
...
...
gcc/regrename.c
View file @
3b03c671
gcc/tree.c
View file @
3b03c671
...
...
@@ -124,8 +124,8 @@ htab_t type_hash_table;
static
void
set_type_quals
PARAMS
((
tree
,
int
));
static
void
append_random_chars
PARAMS
((
char
*
));
static
int
type_hash_eq
PARAMS
((
const
void
*
,
const
void
*
));
static
unsigned
int
type_hash_hash
PARAMS
((
const
void
*
));
static
int
type_hash_eq
PARAMS
((
const
void
*
,
const
void
*
));
static
unsigned
int
type_hash_hash
PARAMS
((
const
void
*
));
static
void
print_type_hash_statistics
PARAMS
((
void
));
static
void
finish_vector_type
PARAMS
((
tree
));
static
tree
make_vector
PARAMS
((
enum
machine_mode
,
tree
,
int
));
...
...
@@ -618,11 +618,11 @@ make_tree_vec (len)
int
len
;
{
tree
t
;
int
length
=
(
len
-
1
)
*
sizeof
(
tree
)
+
sizeof
(
struct
tree_vec
);
int
length
=
(
len
-
1
)
*
sizeof
(
tree
)
+
sizeof
(
struct
tree_vec
);
#ifdef GATHER_STATISTICS
tree_node_counts
[(
int
)
vec_kind
]
++
;
tree_node_sizes
[(
int
)
vec_kind
]
+=
length
;
tree_node_counts
[(
int
)
vec_kind
]
++
;
tree_node_sizes
[(
int
)
vec_kind
]
+=
length
;
#endif
t
=
ggc_alloc_tree
(
length
);
...
...
@@ -2498,7 +2498,7 @@ tree
build_type_attribute_variant
(
ttype
,
attribute
)
tree
ttype
,
attribute
;
{
if
(
!
attribute_list_equal
(
TYPE_ATTRIBUTES
(
ttype
),
attribute
))
if
(
!
attribute_list_equal
(
TYPE_ATTRIBUTES
(
ttype
),
attribute
))
{
unsigned
int
hashcode
;
tree
ntype
;
...
...
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