cvsuser     02/11/29 19:07:56

  Modified:    .        interpreter.c
  Log:
  Fix this for the case where we have no JIT support compiled in.
  
  Revision  Changes    Path
  1.121     +3 -1      parrot/interpreter.c
  
  Index: interpreter.c
  ===================================================================
  RCS file: /cvs/public/parrot/interpreter.c,v
  retrieving revision 1.120
  retrieving revision 1.121
  diff -u -w -r1.120 -r1.121
  --- interpreter.c     29 Nov 2002 09:00:26 -0000      1.120
  +++ interpreter.c     30 Nov 2002 03:07:56 -0000      1.121
  @@ -1,7 +1,7 @@
   /* interpreter.c
    *  Copyright: (When this is determined...it will go here)
    *  CVS Info
  - *     $Id: interpreter.c,v 1.120 2002/11/29 09:00:26 leo Exp $
  + *     $Id: interpreter.c,v 1.121 2002/11/30 03:07:56 josh Exp $
    *  Overview:
    *     The interpreter api handles running the operations
    *  Data Structure and Algorithms:
  @@ -615,7 +615,9 @@
       intstack_free(interpreter, interpreter->ctx.intstack);
   
       PIO_destroy(interpreter);
  +#ifdef HAS_JIT
       Parrot_destroy_jit(interpreter);
  +#endif
   
       mem_sys_free(interpreter);
   }
  
  
  


Reply via email to