test69
auto test69 =
q{--- test69
// Bug. Multiple users of trivial phis do not get
// all users added when replacing phi result by singular phi argument
struct GameMap {
bool blocked;
bool block_sight;
}
void initialize_tiles(GameMap* map)
{
i32 x = 0;
while(x < 20) {
map.blocked = false;
map.block_sight = false;
}
}
};
tests passing
functionsvariables