Diff for /rpl/src/analyse.c between versions 1.31 and 1.36

version 1.31, 2010/09/06 16:50:16 version 1.36, 2011/03/06 16:44:07
Line 1 Line 1
 /*  /*
 ================================================================================  ================================================================================
   RPL/2 (R) version 4.0.19    RPL/2 (R) version 4.0.21
   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 468  initialisation_instructions(struct_proce Line 468  initialisation_instructions(struct_proce
     INSTRUCTION("LINE", instruction_line);      INSTRUCTION("LINE", instruction_line);
     INSTRUCTION("LNP1", instruction_lnp1);      INSTRUCTION("LNP1", instruction_lnp1);
     INSTRUCTION("LOCK", instruction_lock);      INSTRUCTION("LOCK", instruction_lock);
       INSTRUCTION("L->T", instruction_l_vers_t);
     INSTRUCTION("MANT", instruction_mant);      INSTRUCTION("MANT", instruction_mant);
     INSTRUCTION("MARK", instruction_mark);      INSTRUCTION("MARK", instruction_mark);
     //INSTRUCTION("MAXR")      //INSTRUCTION("MAXR")
Line 571  initialisation_instructions(struct_proce Line 572  initialisation_instructions(struct_proce
     INSTRUCTION("TRNC", instruction_trnc);      INSTRUCTION("TRNC", instruction_trnc);
     INSTRUCTION("TRUE", instruction_true);      INSTRUCTION("TRUE", instruction_true);
     INSTRUCTION("TYPE", instruction_type);      INSTRUCTION("TYPE", instruction_type);
       INSTRUCTION("T->L", instruction_t_vers_l);
     INSTRUCTION("UTPC", instruction_utpc);      INSTRUCTION("UTPC", instruction_utpc);
     INSTRUCTION("UTPF", instruction_utpf);      INSTRUCTION("UTPF", instruction_utpf);
     INSTRUCTION("UTPN", instruction_utpn);      INSTRUCTION("UTPN", instruction_utpn);
Line 896  initialisation_instructions(struct_proce Line 898  initialisation_instructions(struct_proce
 }  }
   
   
 #ifndef OS2  
 extern inline  
 #endif  
 void *  void *
 analyse_instruction(struct_processus *s_etat_processus, unsigned char *ptr)  analyse_instruction(struct_processus *s_etat_processus, unsigned char *ptr)
 {  {
Line 972  analyse(struct_processus *s_etat_process Line 971  analyse(struct_processus *s_etat_process
   
     void                            (*instruction)();      void                            (*instruction)();
   
   #   ifdef DMALLOC
       BUG(dmalloc_verify(NULL) == DMALLOC_VERIFY_ERROR,
               printf("HEAP CORRUPTION!"));
   #   endif
   
     errno = 0;      errno = 0;
     (*s_etat_processus).var_volatile_exception_gsl = 0;      (*s_etat_processus).var_volatile_exception_gsl = 0;
   

Removed from v.1.31  
changed lines
  Added in v.1.36


CVSweb interface <joel.bertrand@systella.fr>