Diff for /rpl/src/instructions_n1.c between versions 1.5 and 1.17.2.1

version 1.5, 2010/03/09 10:18:47 version 1.17.2.1, 2011/04/11 13:02:22
Line 1 Line 1
 /*  /*
 ================================================================================  ================================================================================
   RPL/2 (R) version 4.0.13    RPL/2 (R) version 4.0.22
   Copyright (C) 1989-2010 Dr. BERTRAND Joël    Copyright (C) 1989-2011 Dr. BERTRAND Joël
   
   This file is part of RPL/2.    This file is part of RPL/2.
   
Line 20 Line 20
 */  */
   
   
 #include "rpl.conv.h"  #include "rpl-conv.h"
   
   
 /*  /*
Line 756  instruction_not(struct_processus *s_etat Line 756  instruction_not(struct_processus *s_etat
   
     else if ((*s_objet_argument).type == BIN)      else if ((*s_objet_argument).type == BIN)
     {      {
         (*((logical8 *) (*s_objet_argument).objet)) =          if ((s_objet_resultat = allocation(s_etat_processus, BIN)) == NULL)
                 ~(*((logical8 *) (*s_objet_argument).objet));          {
               (*s_etat_processus).erreur_systeme = d_es_allocation_memoire;
               return;
           }
   
         s_objet_resultat = s_objet_argument;          (*((logical8 *) (*s_objet_resultat).objet)) =
         s_objet_argument = NULL;                  ~(*((logical8 *) (*s_objet_argument).objet));
     }      }
   
 /*  /*

Removed from v.1.5  
changed lines
  Added in v.1.17.2.1


CVSweb interface <joel.bertrand@systella.fr>