You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ravi/ravicomp/src/optimizer.h

10 lines
285 B

#ifndef ravicomp_OPTIMIZER_H
#define ravicomp_OPTIMIZER_H
/**
* Remove blocks that are unreachable. Blocks ae logically deleted by removing
* all instructions, rather than being physically removed.
*/
extern int raviX_remove_unreachable_blocks(LinearizerState *linearizer);
#endif