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
afb52ee7
Commit
afb52ee7
authored
Feb 25, 1994
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(substitute_in_type, case REAL_TYPE): Allow TYPE_{MIN,MAX}_VALUE to be
unassigned. From-SVN: r6626
parent
da4c1717
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
gcc/tree.c
+10
-5
No files found.
gcc/tree.c
View file @
afb52ee7
...
...
@@ -2117,14 +2117,19 @@ substitute_in_type (t, f, r)
return
t
;
case
REAL_TYPE
:
if
((
TREE_CODE
(
TYPE_MIN_VALUE
(
t
))
!=
INTEGER_CST
if
((
TYPE_MIN_VALUE
(
t
)
!=
0
&&
TREE_CODE
(
TYPE_MIN_VALUE
(
t
))
!=
REAL_CST
&&
contains_placeholder_p
(
TYPE_MIN_VALUE
(
t
)))
||
(
TREE_CODE
(
TYPE_MAX_VALUE
(
t
))
!=
INTEGER_CST
||
(
TYPE_MAX_VALUE
(
t
)
!=
0
&&
TREE_CODE
(
TYPE_MAX_VALUE
(
t
))
!=
REAL_CST
&&
contains_placeholder_p
(
TYPE_MAX_VALUE
(
t
))))
{
t
=
build_type_copy
(
t
);
TYPE_MIN_VALUE
(
t
)
=
substitute_in_expr
(
TYPE_MIN_VALUE
(
t
),
f
,
r
);
TYPE_MAX_VALUE
(
t
)
=
substitute_in_expr
(
TYPE_MAX_VALUE
(
t
),
f
,
r
);
t
=
copy_type
(
t
);
if
(
TYPE_MIN_VALUE
(
t
))
TYPE_MIN_VALUE
(
t
)
=
substitute_in_expr
(
TYPE_MIN_VALUE
(
t
),
f
,
r
);
if
(
TYPE_MAX_VALUE
(
t
))
TYPE_MAX_VALUE
(
t
)
=
substitute_in_expr
(
TYPE_MAX_VALUE
(
t
),
f
,
r
);
}
return
t
;
...
...
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