MCPcopy Create free account
hub / github.com/csmith-project/csmith / imply

Method imply

src/FactPointTo.cpp:628–638  ·  view source on GitHub ↗

* return false if point-to already contains point-to-set in f, true otherwise */

Source from the content-addressed store, hash-verified

626 * return false if point-to already contains point-to-set in f, true otherwise
627 */
628bool
629FactPointTo::imply(const Fact& f) const
630{
631 if (is_related(f)) {
632 const FactPointTo& fact = (const FactPointTo&)f;
633 if (sub_variable_sets(fact.get_point_to_vars(), point_to_vars)) {
634 return true;
635 }
636 }
637 return false;
638}
639
640void output_var(const Variable* var, std::ostream &out)
641{

Callers

nothing calls this directly

Calls 1

sub_variable_setsFunction · 0.85

Tested by

no test coverage detected