Skip to content

Inform 6.41

Compare
Choose a tag to compare
@DavidKinder DavidKinder released this 22 Jul 06:24
· 468 commits to master since this release

Inform 6.41 was released on 22nd July 2022.

Features added

  • The dead code elimination logic now allows forward jumps to labels that would be otherwise unreachable, like this:
  if (condition) {
    jump MiddleLabel;
  }
  if (0) {
    while (condition) {
      ...
    .MiddleLabel;
      ...
    }
  }
  • The error that occurs when the compiler encounters a jump to an unknown label now includes the name of that label.