Diff for /rpl/src/instructions_n1.c between versions 1.1.1.1 and 1.17.2.3

version 1.1.1.1, 2010/01/26 15:22:45 version 1.17.2.3, 2011/05/09 13:52:18
Line 1 Line 1
 /*  /*
 ================================================================================  ================================================================================
   RPL/2 (R) version 4.0.9    RPL/2 (R) version 4.0.24
   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.1.1.1  
changed lines
  Added in v.1.17.2.3


CVSweb interface <joel.bertrand@systella.fr>