Skip to content

ai_baset does not update caller's state #325

Closed
@tautschnig

Description

@tautschnig

ai_baset::do_function_call will trigger updates of the callee when new inputs are provided, state computed. Any later updates of that callee, however, will not be propagated back to all possible call sites.

Interestingly, though, interval analysis seems to be propagating something (though broken) back. An example:

int d=0;
void f1() { d=1; }
int main()
{
  int x=2;
  f1();
  if(x && d) return 1;
  return 0;
}

Activity

martin-cs

martin-cs commented on Nov 30, 2016

@martin-cs
Collaborator
added 2 commits that reference this issue on May 9, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      No branches or pull requests

        Participants

        @tautschnig@martin-cs

        Issue actions

          ai_baset does not update caller's state · Issue #325 · diffblue/cbmc