This is an archive of the discontinued LLVM Phabricator instance.

[mlir][Pass] Remove the verifierPass now that verification is run during normal pass execution
ClosedPublic

Authored by rriddle on Nov 10 2020, 3:08 PM.

Details

Summary

A recent refactoring removed the need to interleave verifier passes and instead opted to verify during the normal execution of passes instead. As such, the old verify pass is no longer necessary and can be removed.

Depends On D91211

Diff Detail

Event Timeline

rriddle created this revision.Nov 10 2020, 3:08 PM
rriddle requested review of this revision.Nov 10 2020, 3:08 PM
mehdi_amini accepted this revision.Nov 10 2020, 3:32 PM

Thanks!

This revision is now accepted and ready to land.Nov 10 2020, 3:32 PM
jpienaar accepted this revision.Nov 11 2020, 7:56 AM
jpienaar added a subscriber: jpienaar.

Nice improvement :)