1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Disable block merge with 'fake br'

This commit is contained in:
Brian Fiete 2022-06-27 15:56:15 -07:00
parent 84bc0ad1de
commit 720a3ad14f
2 changed files with 7 additions and 1 deletions

View file

@ -660,6 +660,7 @@ public:
int mBlockIdx;
int mMaxDeclBlockId; // If blocks merge, this is the highest index
bool mIsLooped;
bool mHasFakeBr;
BeVTrackingList* mSuccLiveness;
BeVTrackingList* mSuccVRegsInitialized;
BeVTrackingList* mPredVRegsInitialized;
@ -672,6 +673,7 @@ public:
{
mLabelIdx = -1;
mIsLooped = false;
mHasFakeBr = false;
mBlockIdx = -1;
mMaxDeclBlockId = -1;
mSuccLiveness = NULL;