[BACK]Return to print.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2000 / builtin

Diff for /OpenXM_contrib2/asir2000/builtin/print.c between version 1.17 and 1.20

version 1.17, 2004/05/14 09:20:56 version 1.20, 2005/12/10 14:14:15
Line 45 
Line 45 
  * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,   * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE,
  * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.   * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE.
  *   *
  * $OpenXM: OpenXM_contrib2/asir2000/builtin/print.c,v 1.16 2004/03/03 01:16:28 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2000/builtin/print.c,v 1.19 2005/09/28 08:08:34 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 214  void fnodetotree(FNODE f,LIST *rp)
Line 214  void fnodetotree(FNODE f,LIST *rp)
                         MKLIST(*rp,n);                          MKLIST(*rp,n);
                         break;                          break;
   
                   case I_NARYOP:
                           /* head */
                           MKSTR(head,"n_op");
                           n = (NODE)FA1(f);
                           for ( t0 = 0; n; n = NEXT(n) ) {
                                   NEXTNODE(t0,t);
                                   fnodetotree((FNODE)BDY(n),&a1);
                                   BDY(t) = (pointer)a1;
                           }
                           MKSTR(op,((ARF)FA0(f))->name);
                           MKNODE(t,op,t0);
                           MKNODE(n,head,t);
                           MKLIST(*rp,n);
                           break;
   
                 /* ternary operators */                  /* ternary operators */
                 case I_CE:                  case I_CE:
                         MKSTR(head,"t_op");                          MKSTR(head,"t_op");
Line 241  void fnodetotree(FNODE f,LIST *rp)
Line 256  void fnodetotree(FNODE f,LIST *rp)
                         break;                          break;
   
                 /* function */                  /* function */
                 case I_FUNC: case I_CAR: case I_CDR: case I_EV:                  case I_FUNC: case I_FUNC_QARG: case I_CAR: case I_CDR: case I_EV:
                         MKSTR(head,"function");                          MKSTR(head,"function");
                         switch ( f->id ) {                          switch ( f->id ) {
                                 case I_FUNC:                                  case I_FUNC: case I_FUNC_QARG:
                                         MKSTR(op,((FUNC)FA0(f))->name);                                          MKSTR(op,((FUNC)FA0(f))->fullname);
                                         fnodetotree((FNODE)FA1(f),&a1);                                          fnodetotree((FNODE)FA1(f),&a1);
                                         break;                                          break;
                                 case I_CAR:                                  case I_CAR:

Legend:
Removed from v.1.17  
changed lines
  Added in v.1.20

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>