mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #10374 from blishko/smtchecker-type-identifiers
[SMTChecker] Do not report warning when encountered a Type identifier.
This commit is contained in:
commit
243ac16cea
@ -857,11 +857,8 @@ void SMTEncoder::endVisit(Identifier const& _identifier)
|
||||
defineExpr(_identifier, m_context.state().thisAddress());
|
||||
m_uninterpretedTerms.insert(&_identifier);
|
||||
}
|
||||
// Ignore struct type identifiers in struct constructor calls
|
||||
else if (
|
||||
auto typetype = dynamic_cast<TypeType const*>(_identifier.annotation().type);
|
||||
typetype && typetype->actualType()->category() == Type::Category::Struct
|
||||
)
|
||||
// Ignore type identifiers
|
||||
else if (dynamic_cast<TypeType const*>(_identifier.annotation().type))
|
||||
return;
|
||||
// Ignore the builtin abi, it is handled in FunctionCall.
|
||||
// TODO: ignore MagicType in general (abi, block, msg, tx, type)
|
||||
|
@ -17,5 +17,3 @@ contract C
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// Warning 8364: (228-229): Assertion checker does not yet implement type type(library L)
|
||||
// Warning 8364: (228-229): Assertion checker does not yet implement type type(library L)
|
||||
|
@ -17,6 +17,4 @@ contract C
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// Warning 8364: (228-229): Assertion checker does not yet implement type type(library L)
|
||||
// Warning 6328: (245-261): CHC: Assertion violation happens here.
|
||||
// Warning 8364: (228-229): Assertion checker does not yet implement type type(library L)
|
||||
|
@ -15,5 +15,3 @@ library L {
|
||||
|
||||
// ----
|
||||
// Warning 2018: (131-190): Function state mutability can be restricted to pure
|
||||
// Warning 8364: (86-87): Assertion checker does not yet implement type type(library L)
|
||||
// Warning 8364: (86-87): Assertion checker does not yet implement type type(library L)
|
||||
|
@ -19,8 +19,6 @@ contract C {
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// Warning 8364: (300-302): Assertion checker does not yet implement type type(library l1)
|
||||
// Warning 6328: (136-155): CHC: Assertion violation happens here.
|
||||
// Warning 4984: (229-234): CHC: Overflow (resulting value larger than 2**256 - 1) happens here.
|
||||
// Warning 4984: (327-332): CHC: Overflow (resulting value larger than 2**256 - 1) happens here.
|
||||
// Warning 8364: (300-302): Assertion checker does not yet implement type type(library l1)
|
||||
|
@ -15,6 +15,4 @@ library L {
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// Warning 8364: (c:104-105): Assertion checker does not yet implement type type(library L)
|
||||
// Warning 6328: (c:113-126): CHC: Assertion violation happens here.
|
||||
// Warning 8364: (c:104-105): Assertion checker does not yet implement type type(library L)
|
||||
|
@ -29,6 +29,4 @@ contract C {
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// Warning 8364: (360-361): Assertion checker does not yet implement type type(library L)
|
||||
// Warning 6328: (507-521): CHC: Assertion violation happens here.
|
||||
// Warning 8364: (360-361): Assertion checker does not yet implement type type(library L)
|
||||
|
@ -10,5 +10,3 @@ contract C
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// Warning 8364: (132-133): Assertion checker does not yet implement type type(enum C.D)
|
||||
// Warning 8364: (132-133): Assertion checker does not yet implement type type(enum C.D)
|
||||
|
@ -71,5 +71,3 @@ contract C {
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// Warning 8364: (1304-1305): Assertion checker does not yet implement type type(enum E)
|
||||
// Warning 8364: (1304-1305): Assertion checker does not yet implement type type(enum E)
|
||||
|
@ -67,5 +67,3 @@ contract C {
|
||||
}
|
||||
}
|
||||
// ----
|
||||
// Warning 8364: (1144-1145): Assertion checker does not yet implement type type(contract D)
|
||||
// Warning 8364: (1144-1145): Assertion checker does not yet implement type type(contract D)
|
||||
|
Loading…
Reference in New Issue
Block a user