Skip to content

Commit

Permalink
Type conflicts on the return value of implicitly declared functions a…
Browse files Browse the repository at this point in the history
…re errors
  • Loading branch information
tautschnig committed Mar 2, 2018
1 parent d074537 commit 5c18ccc
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 14 deletions.
7 changes: 4 additions & 3 deletions regression/cbmc/return6/test.desc
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
KNOWNBUG
CORE
main.c
f_def.c
^EXIT=0$
^EXIT=6$
^SIGNAL=0$
^VERIFICATION SUCCESSFUL$
CONVERSION ERROR
--
^warning: ignoring
^VERIFICATION SUCCESSFUL$
35 changes: 24 additions & 11 deletions src/linking/linking.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -452,15 +452,23 @@ void linkingt::duplicate_code_symbol(
const code_typet &old_t=to_code_type(old_symbol.type);
const code_typet &new_t=to_code_type(new_symbol.type);

// if one of them was an implicit declaration, just issue a warning
// if one of them was an implicit declaration then only conflicts on the
// return type are an error as we would end up with assignments with
// mismatching types; as we currently do not patch these by inserting type
// casts we need to fail hard
if(!old_symbol.location.get_function().empty() &&
old_symbol.value.is_nil())
{
// issue a warning and overwrite
link_warning(
old_symbol,
new_symbol,
"implicit function declaration");
if(base_type_eq(old_t.return_type(), new_t.return_type(), ns))
link_warning(
old_symbol,
new_symbol,
"implicit function declaration");
else
link_error(
old_symbol,
new_symbol,
"implicit function declaration");

old_symbol.type=new_symbol.type;
old_symbol.location=new_symbol.location;
Expand All @@ -469,11 +477,16 @@ void linkingt::duplicate_code_symbol(
else if(!new_symbol.location.get_function().empty() &&
new_symbol.value.is_nil())
{
// issue a warning
link_warning(
old_symbol,
new_symbol,
"ignoring conflicting implicit function declaration");
if(base_type_eq(old_t.return_type(), new_t.return_type(), ns))
link_warning(
old_symbol,
new_symbol,
"ignoring conflicting implicit function declaration");
else
link_error(
old_symbol,
new_symbol,
"implicit function declaration");
}
// handle (incomplete) function prototypes
else if(base_type_eq(old_t.return_type(), new_t.return_type(), ns) &&
Expand Down

0 comments on commit 5c18ccc

Please sign in to comment.