Fixed bug in numHeritagePasses

This commit is contained in:
caheckman 2020-03-31 09:25:49 -04:00
parent 1560158d2a
commit 7dea6d1f41
4 changed files with 13 additions and 5 deletions

View file

@ -160,7 +160,7 @@ class ConditionalExecution {
void fixReturnOp(void);
bool verify(void); ///< Verify that we have a removable \b iblock
public:
ConditionalExecution(Funcdata *f) { fd = f; } ///< Constructor
ConditionalExecution(Funcdata *f); ///< Constructor
bool trial(BlockBasic *ib); ///< Test for a modifiable configuration around the given block
void execute(void); ///< Eliminate the unnecessary path join at \b iblock
};