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
754a4d82
Commit
754a4d82
authored
May 20, 1992
by
Richard Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r1027
parent
45044655
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
7 deletions
+12
-7
gcc/c-typeck.c
+12
-7
No files found.
gcc/c-typeck.c
View file @
754a4d82
...
...
@@ -1972,17 +1972,17 @@ convert_arguments (typelist, values, name)
if
(
TREE_CODE
(
type
)
!=
REAL_TYPE
&&
TREE_CODE
(
TREE_TYPE
(
val
))
==
REAL_TYPE
)
warn
ing
(
"floating argument converted to integer"
);
warn
_for_assignment
(
"%s as integer rather than floating due to prototype"
,
(
char
*
)
0
,
name
,
parmnum
+
1
);
else
if
(
TREE_CODE
(
type
)
==
REAL_TYPE
&&
TREE_CODE
(
TREE_TYPE
(
val
))
!=
REAL_TYPE
)
warn
ing
(
"integer argument converted to floating"
);
warn
_for_assignment
(
"%s as floating rather than integer due to prototype"
,
(
char
*
)
0
,
name
,
parmnum
+
1
);
else
if
(
TREE_CODE
(
type
)
==
REAL_TYPE
&&
TREE_CODE
(
TREE_TYPE
(
val
))
==
REAL_TYPE
)
{
/* Warn if any argument is passed as `float',
since without a prototype it would be `double'. */
if
(
formal_prec
==
TYPE_PRECISION
(
float_type_node
))
warn
ing
(
"floating argument passed as `float' rather than `double'"
);
warn
_for_assignment
(
"%s as `float' rather than `double' due to prototype"
,
(
char
*
)
0
,
name
,
parmnum
+
1
);
}
/* Detect integer changing in width or signedness. */
else
if
((
TREE_CODE
(
type
)
==
INTEGER_TYPE
...
...
@@ -1993,8 +1993,13 @@ convert_arguments (typelist, values, name)
tree
would_have_been
=
default_conversion
(
val
);
tree
type1
=
TREE_TYPE
(
would_have_been
);
if
(
formal_prec
!=
TYPE_PRECISION
(
type
))
warning
(
"prototype changes width used for integer argument"
);
if
(
TREE_CODE
(
type
)
==
ENUMERAL_TYPE
&&
type
==
TREE_TYPE
(
val
))
/* No warning if function asks for enum
and the actual arg is that enum type. */
;
else
if
(
formal_prec
!=
TYPE_PRECISION
(
type1
))
warn_for_assignment
(
"%s with different width due to prototype"
,
(
char
*
)
0
,
name
,
parmnum
+
1
);
else
if
(
TREE_UNSIGNED
(
type
)
==
TREE_UNSIGNED
(
type1
))
;
else
if
(
TREE_CODE
(
val
)
==
INTEGER_CST
...
...
@@ -2009,9 +2014,9 @@ convert_arguments (typelist, values, name)
if an enum value is unaffected. */
;
else
if
(
TREE_UNSIGNED
(
type
))
warn
ing
(
"argument passed as unsigned due to prototype"
);
warn
_for_assignment
(
"%s as unsigned due to prototype"
,
(
char
*
)
0
,
name
,
parmnum
+
1
);
else
warn
ing
(
"argument passed as signed due to prototype"
);
warn
_for_assignment
(
"%s as signed due to prototype"
,
(
char
*
)
0
,
name
,
parmnum
+
1
);
}
}
...
...
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