[m-dev.] diff: turn off `--delay-death'
Fergus Henderson
fjh at cs.mu.OZ.AU
Sun Feb 4 10:13:20 AEDT 2001
Zoltan's recent change on the main branch broke one of the test cases.
This patch is a temporary work-around, until Zoltan gets around to
fixing it properly.
----------
Estimated hours taken: 0.25
compiler/options.m:
Turn off the `--delay-death' option, since it is currently broken.
Workspace: /home/hg/fjh/mercury
Index: compiler/options.m
===================================================================
RCS file: /home/mercury1/repository/mercury/compiler/options.m,v
retrieving revision 1.305
diff -u -d -r1.305 options.m
--- compiler/options.m 2001/01/09 04:06:43 1.305
+++ compiler/options.m 2001/02/03 22:50:28
@@ -505,7 +505,10 @@
trace_table_io - bool(no),
trace_table_io_states - bool(no),
suppress_trace - string(""),
- delay_death - bool(yes),
+ % XXX delay_death should be enabled by default,
+ % but currently it is disabled because it is broken --
+ % it fails on tests/hard_coded/erroneous_liveness.m.
+ delay_death - bool(no),
stack_trace_higher_order - bool(no),
generate_bytecode - bool(no),
generate_prolog - bool(no),
--
Fergus Henderson <fjh at cs.mu.oz.au> | "I have always known that the pursuit
| of excellence is a lethal habit"
WWW: <http://www.cs.mu.oz.au/~fjh> | -- the last words of T. S. Garp.
--------------------------------------------------------------------------
mercury-developers mailing list
Post messages to: mercury-developers at cs.mu.oz.au
Administrative Queries: owner-mercury-developers at cs.mu.oz.au
Subscriptions: mercury-developers-request at cs.mu.oz.au
--------------------------------------------------------------------------
More information about the developers
mailing list