[PATCH] D83592: [Coverage] Add comment to skipped regions

Zequan Wu via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Jul 22 16:43:47 PDT 2020


zequanwu added a comment.

I found the problem is that I was trying to merge two skipped regions when they are adjacent.
So, the following code will fail at assertion, because the skipped regions are in different files, but are merged.

  $ cat a.h
  // comment
  $ cat a.c
  #include "a.h"
  // comment
  int main() {}


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

https://reviews.llvm.org/D83592





More information about the llvm-commits mailing list