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
c81fe25d
Commit
c81fe25d
authored
Jan 27, 1993
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(init_decl_processing): Make the arrays 200 long instead of 10 to
leave more room for most names. From-SVN: r3369
parent
97d17ac2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
gcc/c-decl.c
+5
-3
No files found.
gcc/c-decl.c
View file @
c81fe25d
...
...
@@ -2657,9 +2657,11 @@ init_decl_processing ()
=
build_pointer_type
(
build_type_variant
(
char_type_node
,
1
,
0
));
/* Make a type to be the domain of a few array types
whose domains don`t really matter.
10 is small enough that it always fits in size_t. */
array_domain_type
=
build_index_type
(
build_int_2
(
10
,
0
));
whose domains don't really matter.
200 is small enough that it always fits in size_t
and large enough that it can hold most function names for the
initializations of __FUNCTION__ and __PRETTY_FUNCTION__. */
array_domain_type
=
build_index_type
(
build_int_2
(
200
,
0
));
/* make a type for arrays of characters.
With luck nothing will ever really depend on the length of this
...
...
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