Diff for /rpl/src/instructions_n1.c between versions 1.7 and 1.14

version 1.7, 2010/04/21 13:45:48 version 1.14, 2010/08/26 19:07:39
Line 1 Line 1
 /*  /*
 ================================================================================  ================================================================================
   RPL/2 (R) version 4.0.15    RPL/2 (R) version 4.0.19
   Copyright (C) 1989-2010 Dr. BERTRAND Joël    Copyright (C) 1989-2010 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.7  
changed lines
  Added in v.1.14


CVSweb interface <joel.bertrand@systella.fr>