Searched defs:CustomOptPassGate (Results 1 – 1 of 1) sorted by relevance
359 struct CustomOptPassGate : public OptPassGate { struct360 bool Skip;361 CustomOptPassGate(bool Skip) : Skip(Skip) { } in CustomOptPassGate() function362 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