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
e83cb5f0
Commit
e83cb5f0
authored
Jan 28, 2002
by
Roman Zippel
Committed by
Richard Henderson
Jan 28, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* toplev.c (lang_independent_init): Round up identifier size.
From-SVN: r49291
parent
5721cd84
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcc/ChangeLog
+4
-0
gcc/toplev.c
+2
-2
No files found.
gcc/ChangeLog
View file @
e83cb5f0
2002-01-28 Roman Zippel <zippel@linux-m68k.org>
* toplev.c (lang_independent_init): Round up identifier size.
2002-01-28 Richard Earnshaw <rearnsha@arm.com>
2002-01-28 Richard Earnshaw <rearnsha@arm.com>
* config.gcc: Revert previous change.
* config.gcc: Revert previous change.
...
...
gcc/toplev.c
View file @
e83cb5f0
...
@@ -5012,8 +5012,8 @@ lang_independent_init ()
...
@@ -5012,8 +5012,8 @@ lang_independent_init ()
/* Set the language-dependent identifier size. */
/* Set the language-dependent identifier size. */
tree_code_length
[(
int
)
IDENTIFIER_NODE
]
tree_code_length
[(
int
)
IDENTIFIER_NODE
]
=
((
lang_hooks
.
identifier_size
-
sizeof
(
struct
tree_common
)
)
=
((
lang_hooks
.
identifier_size
-
sizeof
(
struct
tree_common
)
/
sizeof
(
tree
));
+
sizeof
(
tree
)
-
1
)
/
sizeof
(
tree
));
/* Initialize the garbage-collector, and string pools. */
/* Initialize the garbage-collector, and string pools. */
init_ggc
();
init_ggc
();
...
...
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