--- rpl/src/analyse.c 2010/12/21 13:47:19 1.34 +++ rpl/src/analyse.c 2011/04/14 13:18:54 1.39 @@ -1,7 +1,7 @@ /* ================================================================================ - RPL/2 (R) version 4.0.20 - Copyright (C) 1989-2010 Dr. BERTRAND Joël + RPL/2 (R) version 4.1.0.prerelease.0 + Copyright (C) 1989-2011 Dr. BERTRAND Joël This file is part of RPL/2. @@ -35,7 +35,6 @@ ================================================================================ */ - static void creation_instruction(struct_processus *s_etat_processus, unsigned char *instruction, void (*routine)()) @@ -468,6 +467,7 @@ initialisation_instructions(struct_proce INSTRUCTION("LINE", instruction_line); INSTRUCTION("LNP1", instruction_lnp1); INSTRUCTION("LOCK", instruction_lock); + INSTRUCTION("L->T", instruction_l_vers_t); INSTRUCTION("MANT", instruction_mant); INSTRUCTION("MARK", instruction_mark); //INSTRUCTION("MAXR") @@ -571,6 +571,7 @@ initialisation_instructions(struct_proce INSTRUCTION("TRNC", instruction_trnc); INSTRUCTION("TRUE", instruction_true); INSTRUCTION("TYPE", instruction_type); + INSTRUCTION("T->L", instruction_t_vers_l); INSTRUCTION("UTPC", instruction_utpc); INSTRUCTION("UTPF", instruction_utpf); INSTRUCTION("UTPN", instruction_utpn); @@ -969,11 +970,6 @@ analyse(struct_processus *s_etat_process void (*instruction)(); -# ifdef DMALLOC - BUG(dmalloc_verify(NULL) == DMALLOC_VERIFY_ERROR, - printf("HEAP CORRUPTION!")); -# endif - errno = 0; (*s_etat_processus).var_volatile_exception_gsl = 0;