[PATCH] D72380: [DataFlow] Factor two worklist implementations out

Gábor Horváth via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Wed Jan 15 15:53:46 PST 2020


xazax.hun added a comment.

Here is an example:

  void f() {
    int i;
    while (i < 42 && i) {
      if (i)
        &i;
    }
  }

This takes 17 visits before, 16 after.


CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D72380/new/

https://reviews.llvm.org/D72380





More information about the cfe-commits mailing list