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
b2232745
Commit
b2232745
authored
May 17, 2005
by
Roger Sayle
Committed by
Roger Sayle
May 17, 2005
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* c-typeck.c (common_type): Also handle BOOLEAN_TYPEs.
From-SVN: r99843
parent
a0f94629
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
1 deletions
+19
-1
gcc/ChangeLog
+4
-0
gcc/c-typeck.c
+15
-1
No files found.
gcc/ChangeLog
View file @
b2232745
2005-05-17 Roger Sayle <roger@eyesopen.com>
* c-typeck.c (common_type): Also handle BOOLEAN_TYPEs.
2005-05-17 Steven Bosscher <stevenb@suse.de>
Stuart Hastings <stuart@apple.com>
Jan Hubicka <jh@suse.cz>
...
...
gcc/c-typeck.c
View file @
b2232745
...
...
@@ -618,7 +618,9 @@ c_common_type (tree t1, tree t2)
}
/* Wrapper around c_common_type that is used by c-common.c. ENUMERAL_TYPEs
are allowed here and are converted to their compatible integer types. */
are allowed here and are converted to their compatible integer types.
BOOLEAN_TYPEs are allowed here and return either boolean_type_node or
preferably a non-Boolean type as the common type. */
tree
common_type
(
tree
t1
,
tree
t2
)
{
...
...
@@ -626,6 +628,18 @@ common_type (tree t1, tree t2)
t1
=
c_common_type_for_size
(
TYPE_PRECISION
(
t1
),
1
);
if
(
TREE_CODE
(
t2
)
==
ENUMERAL_TYPE
)
t2
=
c_common_type_for_size
(
TYPE_PRECISION
(
t2
),
1
);
/* If both types are BOOLEAN_TYPE, then return boolean_type_node. */
if
(
TREE_CODE
(
t1
)
==
BOOLEAN_TYPE
&&
TREE_CODE
(
t2
)
==
BOOLEAN_TYPE
)
return
boolean_type_node
;
/* If either type is BOOLEAN_TYPE, then return the other. */
if
(
TREE_CODE
(
t1
)
==
BOOLEAN_TYPE
)
return
t2
;
if
(
TREE_CODE
(
t2
)
==
BOOLEAN_TYPE
)
return
t1
;
return
c_common_type
(
t1
,
t2
);
}
...
...
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