cvsuser     01/10/03 07:51:07

  Modified:    .        interpreter.c
  Log:
  Changed an occurrence of INTVAL to opcode_t
  
  Courtesy of: Bryan C. Warnock <[EMAIL PROTECTED]>
  
  Revision  Changes    Path
  1.22      +2 -2      parrot/interpreter.c
  
  Index: interpreter.c
  ===================================================================
  RCS file: /home/perlcvs/parrot/interpreter.c,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -w -r1.21 -r1.22
  --- interpreter.c     2001/10/02 14:01:30     1.21
  +++ interpreter.c     2001/10/03 14:51:07     1.22
  @@ -1,7 +1,7 @@
   /* interpreter.c
    *  Copyright: (When this is determined...it will go here)
    *  CVS Info
  - *     $Id: interpreter.c,v 1.21 2001/10/02 14:01:30 simon Exp $
  + *     $Id: interpreter.c,v 1.22 2001/10/03 14:51:07 thgibbs Exp $
    *  Overview:
    *     The interpreter api handles running the operations
    *  Data Structure and Algorithms:
  @@ -136,7 +136,7 @@
       opcode_t * code_start;
       INTVAL         code_size;
       opcode_t * code_end;
  -    INTVAL *       pc;
  +    opcode_t *       pc;
   
       check_fingerprint(interpreter);
   
  
  
  


Reply via email to