cvsuser     01/09/21 02:25:39

  Modified:    .        basic_opcodes.ops process_opfunc.pl
  Log:
  Document patches.
  
  Courtesy of: Leon Brocard <[EMAIL PROTECTED]>
  
  Revision  Changes    Path
  1.22      +1 -0      parrot/basic_opcodes.ops
  
  Index: basic_opcodes.ops
  ===================================================================
  RCS file: /home/perlcvs/parrot/basic_opcodes.ops,v
  retrieving revision 1.21
  retrieving revision 1.22
  diff -u -w -r1.21 -r1.22
  --- basic_opcodes.ops 2001/09/19 21:32:29     1.21
  +++ basic_opcodes.ops 2001/09/21 09:25:39     1.22
  @@ -452,6 +452,7 @@
       STR_REG(P1) = s;
   }
   
  +/* CONCAT Sx, Sx */
   AUTO_OP concat_s {
       STRING *s = string_concat(STR_REG(P1), STR_REG(P2), 1);
       STR_REG(P1) = s;
  
  
  
  1.14      +2 -2      parrot/process_opfunc.pl
  
  Index: process_opfunc.pl
  ===================================================================
  RCS file: /home/perlcvs/parrot/process_opfunc.pl,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -w -r1.13 -r1.14
  --- process_opfunc.pl 2001/09/20 13:48:07     1.13
  +++ process_opfunc.pl 2001/09/21 09:25:39     1.14
  @@ -19,11 +19,11 @@
   #
   #    ... body of function ...
   #
  -#    RETVAL = x;
  +#    RETURN(x);
   #
   # }
   #
  -# There may be more than one RETVAL
  +# There may be more than one RETURN
   #
   # The functions have the magic variables Pnnn for parameters 1 through
   # X. (Parameter 0 is the opcode number) Types for each, and the size
  
  
  

Reply via email to