cvsuser 04/11/22 02:47:02
Modified: src packfile.c
Log:
turn off switch core for out of band code
Revision Changes Path
1.183 +2 -3 parrot/src/packfile.c
Index: packfile.c
===================================================================
RCS file: /cvs/public/parrot/src/packfile.c,v
retrieving revision 1.182
retrieving revision 1.183
diff -u -r1.182 -r1.183
--- packfile.c 15 Nov 2004 10:30:34 -0000 1.182
+++ packfile.c 22 Nov 2004 10:47:02 -0000 1.183
@@ -2,7 +2,7 @@
Copyright (C) 2001-2002 Gregor N. Purdy. All rights reserved.
This program is free software. It is subject to the same license as
Parrot itself.
-$Id: packfile.c,v 1.182 2004/11/15 10:30:34 leo Exp $
+$Id: packfile.c,v 1.183 2004/11/22 10:47:02 leo Exp $
=head1 NAME
@@ -246,8 +246,7 @@
* turn off JIT and prederef - both would act on the whole
* PackFile which isn't worth the effort - probably
*/
- if (interpreter->run_core != PARROT_SWITCH_CORE &&
- interpreter->run_core != PARROT_CGOTO_CORE &&
+ if (interpreter->run_core != PARROT_CGOTO_CORE &&
interpreter->run_core != PARROT_SLOW_CORE &&
interpreter->run_core != PARROT_FAST_CORE)
interpreter->run_core = PARROT_FAST_CORE;