cvsuser     03/11/01 05:32:15

  Modified:    src      cpu_dep.c
  Log:
  The patch changes the type that stores the instruction from int to unsigned
  int.
  Courtesy of David Robins
  
  Revision  Changes    Path
  1.12      +2 -2      parrot/src/cpu_dep.c
  
  Index: cpu_dep.c
  ===================================================================
  RCS file: /cvs/public/parrot/src/cpu_dep.c,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -w -r1.11 -r1.12
  --- cpu_dep.c 23 Oct 2003 17:48:59 -0000      1.11
  +++ cpu_dep.c 1 Nov 2003 13:32:15 -0000       1.12
  @@ -1,7 +1,7 @@
   /* cpu_dep.c
    *  Copyright: 2001-2003 The Perl Foundation.  All Rights Reserved.
    *  CVS Info
  - *     $Id: cpu_dep.c,v 1.11 2003/10/23 17:48:59 robert Exp $
  + *     $Id: cpu_dep.c,v 1.12 2003/11/01 13:32:15 leo Exp $
    *  Overview:
    *     CPU dependent functions
    *  Data Structure and Algorithms:
  @@ -27,7 +27,7 @@
   {
   #if defined(__sparc) /* Flush register windows */
       static union {
  -     int insns[4];
  +     unsigned int insns[4];
           double align_hack[2];
       } u = { {
   #  ifdef __sparcv9
  
  
  

Reply via email to