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
0fd17968
Commit
0fd17968
authored
Mar 17, 1997
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(build_{index,range}_type): Ensure expressions for min and max value
are in same obstack as type. From-SVN: r13722
parent
d5afd1d1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
3 deletions
+12
-3
gcc/tree.c
+12
-3
No files found.
gcc/tree.c
View file @
0fd17968
...
...
@@ -3801,10 +3801,14 @@ build_index_type (maxval)
tree
maxval
;
{
register
tree
itype
=
make_node
(
INTEGER_TYPE
);
TYPE_PRECISION
(
itype
)
=
TYPE_PRECISION
(
sizetype
);
TYPE_MIN_VALUE
(
itype
)
=
build_int_2
(
0
,
0
);
TREE_TYPE
(
TYPE_MIN_VALUE
(
itype
))
=
sizetype
;
TYPE_MIN_VALUE
(
itype
)
=
size_zero_node
;
push_obstacks
(
TYPE_OBSTACK
(
itype
),
TYPE_OBSTACK
(
itype
));
TYPE_MAX_VALUE
(
itype
)
=
convert
(
sizetype
,
maxval
);
pop_obstacks
();
TYPE_MODE
(
itype
)
=
TYPE_MODE
(
sizetype
);
TYPE_SIZE
(
itype
)
=
TYPE_SIZE
(
sizetype
);
TYPE_ALIGN
(
itype
)
=
TYPE_ALIGN
(
sizetype
);
...
...
@@ -3834,12 +3838,17 @@ build_range_type (type, lowval, highval)
tree
type
,
lowval
,
highval
;
{
register
tree
itype
=
make_node
(
INTEGER_TYPE
);
TREE_TYPE
(
itype
)
=
type
;
if
(
type
==
NULL_TREE
)
type
=
sizetype
;
TYPE_PRECISION
(
itype
)
=
TYPE_PRECISION
(
type
);
push_obstacks
(
TYPE_OBSTACK
(
itype
),
TYPE_OBSTACK
(
itype
));
TYPE_MIN_VALUE
(
itype
)
=
convert
(
type
,
lowval
);
TYPE_MAX_VALUE
(
itype
)
=
convert
(
type
,
highval
);
pop_obstacks
();
TYPE_PRECISION
(
itype
)
=
TYPE_PRECISION
(
type
);
TYPE_MODE
(
itype
)
=
TYPE_MODE
(
type
);
TYPE_SIZE
(
itype
)
=
TYPE_SIZE
(
type
);
TYPE_ALIGN
(
itype
)
=
TYPE_ALIGN
(
type
);
...
...
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