[BACK]Return to pvar.c CVS log [TXT][DIR] Up to [local] / OpenXM_contrib2 / asir2018 / parse

Diff for /OpenXM_contrib2/asir2018/parse/pvar.c between version 1.2 and 1.3

version 1.2, 2020/09/27 04:35:05 version 1.3, 2020/10/06 06:31:20
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/asir2018/parse/pvar.c,v 1.1 2018/09/19 05:45:08 noro Exp $   * $OpenXM: OpenXM_contrib2/asir2018/parse/pvar.c,v 1.2 2020/09/27 04:35:05 noro Exp $
 */  */
 #include "ca.h"  #include "ca.h"
 #include "parse.h"  #include "parse.h"
Line 234  unsigned int makepvar(char *str)
Line 234  unsigned int makepvar(char *str)
       c = PVGLOBAL((unsigned int)c);        c = PVGLOBAL((unsigned int)c);
     } else {      } else {
       /* not declared as static or extern */        /* not declared as static or extern */
       buf = ALLOCA(strlen("undeclared variable"+strlen(str)+10));        buf = ALLOCA(strlen("undeclared variable")+strlen(str)+10);
       sprintf(buf,"undeclared variable `%s'",str);        sprintf(buf,"undeclared variable `%s'",str);
       yyerror(buf);        yyerror(buf);
     }      }
Line 245  unsigned int makepvar(char *str)
Line 245  unsigned int makepvar(char *str)
   return c;    return c;
   
 CONFLICTION:  CONFLICTION:
   buf = ALLOCA(strlen("conflicting declarations for "+strlen(str)+10));    buf = ALLOCA(strlen("conflicting declarations for ")+strlen(str)+10);
   sprintf(buf,"conflicting declarations for `%s'",str);    sprintf(buf,"conflicting declarations for `%s'",str);
   yyerror(buf);    yyerror(buf);
     return 0;
 }  }
   
 extern FUNC parse_targetf;  extern FUNC parse_targetf;

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

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