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
60e02b1e
Commit
60e02b1e
authored
Oct 20, 1993
by
Richard Kenner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(check_format_info): Consider "char", "signed char", and "unsigned
char" types as equivalent. From-SVN: r5849
parent
b156894e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
+6
-1
gcc/c-common.c
+6
-1
No files found.
gcc/c-common.c
View file @
60e02b1e
...
...
@@ -899,7 +899,12 @@ check_format_info (info, params)
&&
TREE_CODE
(
cur_type
)
==
INTEGER_TYPE
&&
(
TREE_UNSIGNED
(
wanted_type
)
?
wanted_type
==
unsigned_type
(
cur_type
)
:
wanted_type
==
signed_type
(
cur_type
))))
:
wanted_type
==
signed_type
(
cur_type
)))
/* Likewise, "signed char", "unsigned char" and "char" are
equivalent but the above test won't consider them equivalent. */
&&
!
(
wanted_type
==
char_type_node
&&
(
cur_type
==
signed_char_type_node
||
cur_type
==
unsigned_char_type_node
)))
{
register
char
*
this
;
register
char
*
that
;
...
...
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