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
85059a38
Commit
85059a38
authored
Mar 11, 2017
by
Marek Polacek
Committed by
Marek Polacek
Mar 11, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* c-decl.c (implicit_decl_warning): Add a comment. Fix formatting.
From-SVN: r246069
parent
2f6f187a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
33 deletions
+44
-33
gcc/c/ChangeLog
+4
-0
gcc/c/c-decl.c
+40
-33
No files found.
gcc/c/ChangeLog
View file @
85059a38
2017
-
03
-
11
Marek
Polacek
<
polacek
@redhat
.
com
>
*
c
-
decl
.
c
(
implicit_decl_warning
)
:
Add
a
comment
.
Fix
formatting
.
2017
-
03
-
10
David
Malcolm
<
dmalcolm
@redhat
.
com
>
PR
translation
/
79848
...
...
gcc/c/c-decl.c
View file @
85059a38
...
...
@@ -3117,45 +3117,52 @@ pushdecl_top_level (tree x)
return
x
;
}
/* Issue a warning about implicit function declaration. ID is the function
identifier, OLDDECL is a declaration of the function in a different scope,
or NULL_TREE. */
static
void
implicit_decl_warning
(
location_t
loc
,
tree
id
,
tree
olddecl
)
{
if
(
warn_implicit_function_declaration
)
{
bool
warned
;
const
char
*
hint
=
NULL
;
if
(
!
olddecl
)
hint
=
lookup_name_fuzzy
(
id
,
FUZZY_LOOKUP_FUNCTION_NAME
);
if
(
!
warn_implicit_function_declaration
)
return
;
if
(
flag_isoc99
)
if
(
hint
)
{
gcc_rich_location
richloc
(
loc
);
richloc
.
add_fixit_replace
(
hint
);
warned
=
pedwarn_at_rich_loc
(
&
richloc
,
OPT_Wimplicit_function_declaration
,
"implicit declaration of function %qE; did you mean %qs?"
,
id
,
hint
);
}
else
warned
=
pedwarn
(
loc
,
OPT_Wimplicit_function_declaration
,
"implicit declaration of function %qE"
,
id
);
bool
warned
;
const
char
*
hint
=
NULL
;
if
(
!
olddecl
)
hint
=
lookup_name_fuzzy
(
id
,
FUZZY_LOOKUP_FUNCTION_NAME
);
if
(
flag_isoc99
)
{
if
(
hint
)
{
gcc_rich_location
richloc
(
loc
);
richloc
.
add_fixit_replace
(
hint
);
warned
=
pedwarn_at_rich_loc
(
&
richloc
,
OPT_Wimplicit_function_declaration
,
"implicit declaration of function %qE; did you mean %qs?"
,
id
,
hint
);
}
else
if
(
hint
)
{
gcc_rich_location
richloc
(
loc
);
richloc
.
add_fixit_replace
(
hint
);
warned
=
warning_at_rich_loc
(
&
richloc
,
OPT_Wimplicit_function_declaration
,
G_
(
"implicit declaration of function %qE; did you mean %qs?"
),
id
,
hint
);
}
else
warned
=
warning_at
(
loc
,
OPT_Wimplicit_function_declaration
,
G_
(
"implicit declaration of function %qE"
),
id
);
if
(
olddecl
&&
warned
)
locate_old_decl
(
olddecl
);
warned
=
pedwarn
(
loc
,
OPT_Wimplicit_function_declaration
,
"implicit declaration of function %qE"
,
id
);
}
else
if
(
hint
)
{
gcc_rich_location
richloc
(
loc
);
richloc
.
add_fixit_replace
(
hint
);
warned
=
warning_at_rich_loc
(
&
richloc
,
OPT_Wimplicit_function_declaration
,
G_
(
"implicit declaration of function %qE; did you mean %qs?"
),
id
,
hint
);
}
else
warned
=
warning_at
(
loc
,
OPT_Wimplicit_function_declaration
,
G_
(
"implicit declaration of function %qE"
),
id
);
if
(
olddecl
&&
warned
)
locate_old_decl
(
olddecl
);
}
/* This function represents mapping of a function code FCODE
...
...
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