Displaying 1 result from an estimated 1 matches for "verifypreservedanalysis".
2016 Apr 09
0
Verifier in loop pass manager
...el of checking can be
> // enabled with the -verify-loop-info option.
> {
> TimeRegion PassTimer(getPassTimer(&LIWP));
> CurrentLoop->verifyLoop();
> }
>
> // Then call the regular verifyAnalysis functions.
> verifyPreservedAnalysis(P);
>
> F.getContext().yield();
> }
>
> Was it intentional that verifyPreservedAnalysis is under
> !LoopWasDeleted condition? Will anything break if we move
> verifyPreservedAnalysis out of the if?
Seems like a mistake to me. Try it?
> Thanks,
> Michael