search for: regbankfixuppass

Displaying 1 result from an estimated 1 matches for "regbankfixuppass".

2016 May 10
2
How to register a pass as being optional?
I've created a post-RA pass runOnMachineFunction that gets registed with the pass manager like this: static RegisterPass<RegBankFixUpPass> X("regbankfixup", "Register Bank Conflict FixUp Pass"); And and whenever I run clang or llc now the pass runs. Initially, until I'm sure this pass doesn't break things I'd like it to be opt-in - ie I'd like to have the pass run only when the -regbankfixup co...