Reducibility.h 249 B

12345678910
  1. #pragma once
  2. namespace llvm
  3. {
  4. class Function;
  5. }
  6. // Analyzes the reducibility of the control flow graph of F and uses node splitting
  7. // to make an irredicible CFG reducible. Returns the number of node splits.
  8. int makeReducible(llvm::Function* F);