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
ba5ce70d
Commit
ba5ce70d
authored
Jun 02, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(c_build_type_variant): Don't change TYPE_MAIN_VARIANT of new type.
From-SVN: r7427
parent
7bc7696c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
gcc/c-common.c
+5
-3
No files found.
gcc/c-common.c
View file @
ba5ce70d
...
@@ -1972,14 +1972,16 @@ c_build_type_variant (type, constp, volatilep)
...
@@ -1972,14 +1972,16 @@ c_build_type_variant (type, constp, volatilep)
{
{
if
(
TREE_CODE
(
type
)
==
ARRAY_TYPE
)
if
(
TREE_CODE
(
type
)
==
ARRAY_TYPE
)
{
{
tree
real_main_variant
=
TYPE_MAIN_VARIANT
(
type
);
push_obstacks
(
TYPE_OBSTACK
(
type
),
TYPE_OBSTACK
(
type
));
push_obstacks
(
TYPE_OBSTACK
(
type
),
TYPE_OBSTACK
(
type
));
type
=
build_array_type
(
c_build_type_variant
(
TREE_TYPE
(
type
),
type
=
build_array_type
(
c_build_type_variant
(
TREE_TYPE
(
type
),
constp
,
volatilep
),
constp
,
volatilep
),
TYPE_DOMAIN
(
type
));
TYPE_DOMAIN
(
type
));
TYPE_MAIN_VARIANT
(
type
)
=
real_main_variant
;
pop_obstacks
();
pop_obstacks
();
/* If the old TYPE had variants, we lose them here. However,
since the new TYPE can be in the permanent obstack and the
old one may not be, preserving this chain would cause permanent
objects to point to non-permanent ones. */
}
}
return
build_type_variant
(
type
,
constp
,
volatilep
);
return
build_type_variant
(
type
,
constp
,
volatilep
);
}
}
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