cvsuser     03/12/06 07:22:01

  Modified:    imcc     symreg.c
  Log:
  Change some trace levels.
  
  Revision  Changes    Path
  1.44      +4 -1      parrot/imcc/symreg.c
  
  Index: symreg.c
  ===================================================================
  RCS file: /cvs/public/parrot/imcc/symreg.c,v
  retrieving revision 1.43
  retrieving revision 1.44
  diff -u -w -r1.43 -r1.44
  --- symreg.c  5 Dec 2003 06:33:16 -0000       1.43
  +++ symreg.c  6 Dec 2003 15:22:01 -0000       1.44
  @@ -143,6 +143,9 @@
   add_pcc_arg(SymReg *r, SymReg * arg)
   {
       int n = r->pcc_sub->nargs;
  +#if IMC_TRACE_HIGH
  +    PIO_eprintf(NULL, "add_pcc_arg(%s)\n", arg->name); 
  +#endif
       r->pcc_sub->args = realloc(r->pcc_sub->args, (n + 1) * sizeof(SymReg *));
       if(arg->type & (VTCONST)) {
           r->pcc_sub->args[n] = dup_sym(arg);
  @@ -520,7 +523,7 @@
   _store_symreg(SymReg *hsh[], SymReg * r)
   {
       int i = hash_str(r->name) % HASH_SIZE;
  -#if IMC_TRACE
  +#if IMC_TRACE_HIGH
       printf("    store [%s]\n", r->name);
   #endif
       r->next = hsh[i];
  
  
  

Reply via email to