From c96eaf1d404559ae591b93c0a27385154bd94f8a Mon Sep 17 00:00:00 2001 From: Martin Stjernholm <mast@lysator.liu.se> Date: Thu, 6 Sep 2001 17:55:55 +0200 Subject: [PATCH] Fixed bug in GC_RECURSE and GC_CHECK. Rev: bin/precompile.pike:1.62 --- bin/precompile.pike | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/precompile.pike b/bin/precompile.pike index b69616bcd4..2cf25faa32 100644 --- a/bin/precompile.pike +++ b/bin/precompile.pike @@ -1305,8 +1305,8 @@ class ParseBlock ret=(ret/({"INIT"}))*({PC.Token("PIKE_INTERNAL"),PC.Token("init")}); ret=(ret/({"EXIT"}))*({PC.Token("PIKE_INTERNAL"),PC.Token("exit")}); - ret=(ret/({"GC_RECURSE"}))*({PC.Token("PIKE_INTERNAL"),PC.Token("mark")}); - ret=(ret/({"GC_CHECK"}))*({PC.Token("PIKE_INTERNAL"),PC.Token("mark")}); + ret=(ret/({"GC_RECURSE"}))*({PC.Token("PIKE_INTERNAL"),PC.Token("gc_recurse")}); + ret=(ret/({"GC_CHECK"}))*({PC.Token("PIKE_INTERNAL"),PC.Token("gc_check")}); ret=(ret/({"OPTIMIZE"}))*({PC.Token("PIKE_INTERNAL"),PC.Token("optimize")}); x=ret/({"PIKE_INTERNAL"}); -- GitLab