1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-06-26 04:00:43 +03:00

Enabled $STRIP_UNREACHABLE_LABELS in code generated to inform6

This commit is contained in:
Graham Nelson 2022-07-24 11:48:23 +01:00
parent c506ff967e
commit 78c9d2425e
9 changed files with 5 additions and 12 deletions

View file

@ -1,6 +1,6 @@
# Inform 7
v10.1.0-beta+6V33 'Krypton' (2 July 2022)
v10.1.0-beta+6V34 'Krypton' (24 July 2022)
## About Inform 7
@ -226,9 +226,9 @@ Stable versions of the following are periodically copied into this repository,
but this is not where development on them is done, and no pull requests will
be accepted. (Note that these are not git submodules.)
* inform6 - The Inform 6 compiler (used by I7 as a code generator). - __1636__ - from [https://github.com/DavidKinder/Inform6], maintained by [David Kinder](https://github.com/DavidKinder)
* inform6 - The Inform 6 compiler (used by I7 as a code generator). - __1641__ - from [https://github.com/DavidKinder/Inform6], maintained by [David Kinder](https://github.com/DavidKinder)
* inform6/Tests/Assistants/dumb-frotz - A dumb-terminal Z-machine interpreter. - unversioned: modified from [Alembic Petrofsky's 1998 Teletype port of Frotz](https://github.com/sussman/ircbot-collection/tree/master/dumb-frotz)
* inform6/Tests/Assistants/dumb-glulx/glulxe - A dumb-terminal Glulx interpreter. - __0.5.4__ - [erkyrath/glulxe](https://github.com/erkyrath/glulxe), maintained by [Andrew Plotkin](https://github.com/erkyrath)
* inform6/Tests/Assistants/dumb-glulx/glulxe - A dumb-terminal Glulx interpreter. - __0.6.0__ - [erkyrath/glulxe](https://github.com/erkyrath/glulxe), maintained by [Andrew Plotkin](https://github.com/erkyrath)
* inform6/Tests/Assistants/dumb-glulx/cheapglk - A basic Glk implementation to support dumb-glulxe. - __1.0.6.__ - [erkyrath/cheapglk](https://github.com/erkyrath/cheapglk), maintained by [Andrew Plotkin](https://github.com/erkyrath)
* inblorb/Tests/Assistants/blorblib - Code for examining blorb files, including blorbscan, used here for validating inblorb's output in tests. - version 1.0.2 - by [Andrew Plotkin](https://github.com/erkyrath), but not currently elsewhere on Github

View file

@ -1,3 +1,3 @@
Prerelease: beta
Build Date: 2 July 2022
Build Number: 6V33
Build Date: 24 July 2022
Build Number: 6V34

View file

@ -1,4 +1,3 @@
!% $STRIP_UNREACHABLE_LABELS=0;
!% $ZCODE_LESS_DICT_DATA=1;
Constant Grammar__Version 2;
Global debug_flag;

View file

@ -1,4 +1,3 @@
!% $STRIP_UNREACHABLE_LABELS=0;
!% $ZCODE_LESS_DICT_DATA=1;
Constant Grammar__Version 2;
Global debug_flag;

View file

@ -1,4 +1,3 @@
!% $STRIP_UNREACHABLE_LABELS=0;
!% $ZCODE_LESS_DICT_DATA=1;
Constant Grammar__Version 2;
Global debug_flag;

View file

@ -1,4 +1,3 @@
!% $STRIP_UNREACHABLE_LABELS=0;
!% $ZCODE_LESS_DICT_DATA=1;
Constant Grammar__Version 2;
Global debug_flag;

View file

@ -1,4 +1,3 @@
!% $STRIP_UNREACHABLE_LABELS=0;
!% $ZCODE_LESS_DICT_DATA=1;
Constant Grammar__Version 2;
Global debug_flag;

View file

@ -1,4 +1,3 @@
!% $STRIP_UNREACHABLE_LABELS=0;
!% $ZCODE_LESS_DICT_DATA=1;
Constant Grammar__Version 2;
Global debug_flag;

View file

@ -113,7 +113,6 @@ See the Inform 6 Technical Manual for more on these oddities.
CodeGen::deselect(gen, saved);
saved = CodeGen::select(gen, ICL_directives_I7CGS);
OUT = CodeGen::current(gen);
WRITE("!%% $STRIP_UNREACHABLE_LABELS=0;\n");
WRITE("!%% $ZCODE_LESS_DICT_DATA=1;\n");
CodeGen::deselect(gen, saved);