Create a pass that converts conditional branches into predicated code.
Declared in <llvm/CodeGen/Passes.h>
FunctionPass*
createIfConverter(std::function<bool(MachineFunction const&)> Ftor);
The newly created FunctionPass.
| Name | Description |
|---|---|
| Ftor | Optional predicate; if set, the pass runs only when it returns true for the function. |