blob: 29db0b5c2452470a70e4841da55db4eeccbd1817 [file] [log] [blame]
/* This used to ICE after PHI-OPT because of the "empty block" and diamond form bbs
was not checking to make sure each bbs were only coming from the one bb. */
struct {
int second;
} selectPlayer_playerRes;
int selectPlayer_playerRes_0;
int selectPlayer() {
if (selectPlayer_playerRes_0 && selectPlayer_playerRes.second >= 0)
return selectPlayer_playerRes.second;
else
return -1;
}