Home
last modified time | relevance | path

Searched defs:CustomOptPassGate (Results 1 – 1 of 1) sorted by relevance

/llvm-project-15.0.7/llvm/unittests/IR/
H A DLegacyPassManagerTest.cpp359 struct CustomOptPassGate : public OptPassGate { struct
360 bool Skip;
361 CustomOptPassGate(bool Skip) : Skip(Skip) { } in CustomOptPassGate() function
362 bool shouldRunPass(const Pass *P, StringRef IRDescription) override { in shouldRunPass()
367 bool isEnabled() const override { return true; } in isEnabled()
383 TEST(PassManager, CustomOptPassGate) { in TEST() argument