From: Peter Johnson Date: Mon, 17 Sep 2001 04:12:20 +0000 (-0000) Subject: $Id$ -> $IdPath$. X-Git-Tag: v0.1.0~340 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b2890b8f9d1b7ae5922099877ff34ab27954bcfa;p=yasm $Id$ -> $IdPath$. svn path=/trunk/yasm/; revision=174 --- diff --git a/acconfig.h b/acconfig.h index 5e930667..1fab28db 100644 --- a/acconfig.h +++ b/acconfig.h @@ -1,4 +1,4 @@ -/* $Id: acconfig.h,v 1.2 2001/08/30 03:45:16 peter Exp $ */ +/* $IdPath$ */ #ifndef YASM_CONFIG_H #define YASM_CONFIG_H diff --git a/acinclude.m4 b/acinclude.m4 index 21ccf800..0aa50681 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -1,4 +1,4 @@ -# $Id: acinclude.m4,v 1.1 2001/08/30 03:45:16 peter Exp $ +# $IdPath$ # This test replaces the one in autoconf. # Currently this macro should have the same name as the autoconf macro diff --git a/configure.ac b/configure.ac index 7da2ea99..17461905 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -# $Id: configure.ac,v 1.18 2001/09/16 22:04:02 peter Exp $ +# $IdPath$ AC_INIT(src/main.c) AC_CONFIG_AUX_DIR(config) diff --git a/configure.in b/configure.in index 52797c4e..17461905 100644 --- a/configure.in +++ b/configure.in @@ -1,4 +1,4 @@ -# $Id: configure.in,v 1.18 2001/09/16 22:04:02 peter Exp $ +# $IdPath$ AC_INIT(src/main.c) AC_CONFIG_AUX_DIR(config) diff --git a/frontends/yasm/yasm.c b/frontends/yasm/yasm.c index 25ea8f32..eb8ce568 100644 --- a/frontends/yasm/yasm.c +++ b/frontends/yasm/yasm.c @@ -1,4 +1,4 @@ -/* $Id: yasm.c,v 1.12 2001/09/16 04:49:46 peter Exp $ +/* $IdPath$ * Program entry point, command line parsing * * Copyright (C) 2001 Peter Johnson @@ -38,7 +38,7 @@ #include "preproc.h" #include "parser.h" -RCSID("$Id: yasm.c,v 1.12 2001/09/16 04:49:46 peter Exp $"); +RCSID("$IdPath$"); char *filename = (char *)NULL; unsigned int line_number = 1; diff --git a/libyasm/bytecode.c b/libyasm/bytecode.c index 04812785..e9eb0283 100644 --- a/libyasm/bytecode.c +++ b/libyasm/bytecode.c @@ -1,4 +1,4 @@ -/* $Id: bytecode.c,v 1.22 2001/09/16 20:17:23 peter Exp $ +/* $IdPath$ * Bytecode utility functions * * Copyright (C) 2001 Peter Johnson @@ -41,7 +41,7 @@ #include "bytecode.h" -RCSID("$Id: bytecode.c,v 1.22 2001/09/16 20:17:23 peter Exp $"); +RCSID("$IdPath$"); /* Static structures for when NULL is passed to conversion functions. */ /* for Convert*ToEA() */ diff --git a/libyasm/bytecode.h b/libyasm/bytecode.h index e4eb4c1f..5f1e45b3 100644 --- a/libyasm/bytecode.h +++ b/libyasm/bytecode.h @@ -1,4 +1,4 @@ -/* $Id: bytecode.h,v 1.19 2001/09/16 19:44:49 peter Exp $ +/* $IdPath$ * Bytecode utility functions header file * * Copyright (C) 2001 Peter Johnson diff --git a/libyasm/compat-queue.h b/libyasm/compat-queue.h index db322c0c..ce7a4850 100644 --- a/libyasm/compat-queue.h +++ b/libyasm/compat-queue.h @@ -1,4 +1,4 @@ -/* $Id: compat-queue.h,v 1.3 2001/08/19 05:40:20 peter Exp $ +/* $IdPath$ * implementation for systems that don't have it. * * Copyright (c) 1991, 1993 diff --git a/libyasm/errwarn.c b/libyasm/errwarn.c index 83a54ab8..03c0a657 100644 --- a/libyasm/errwarn.c +++ b/libyasm/errwarn.c @@ -1,4 +1,4 @@ -/* $Id: errwarn.c,v 1.24 2001/09/16 05:39:35 peter Exp $ +/* $IdPath$ * Error and warning reporting and related functions. * * Copyright (C) 2001 Peter Johnson @@ -45,7 +45,7 @@ #include "globals.h" #include "errwarn.h" -RCSID("$Id: errwarn.c,v 1.24 2001/09/16 05:39:35 peter Exp $"); +RCSID("$IdPath$"); /* Total error count for entire assembler run. * Assembler should exit with EXIT_FAILURE if this is >= 0 on finish. */ diff --git a/libyasm/errwarn.h b/libyasm/errwarn.h index bd9e41ed..e3743508 100644 --- a/libyasm/errwarn.h +++ b/libyasm/errwarn.h @@ -1,4 +1,4 @@ -/* $Id: errwarn.h,v 1.14 2001/08/30 03:45:26 peter Exp $ +/* $IdPath$ * Error and warning reporting and related functions header file. * * Copyright (C) 2001 Peter Johnson diff --git a/libyasm/expr.c b/libyasm/expr.c index 9a3b2104..20da3572 100644 --- a/libyasm/expr.c +++ b/libyasm/expr.c @@ -1,4 +1,4 @@ -/* $Id: expr.c,v 1.7 2001/08/19 07:46:52 peter Exp $ +/* $IdPath$ * Expression handling * * Copyright (C) 2001 Michael Urman @@ -37,7 +37,7 @@ #include "expr.h" #include "symrec.h" -RCSID("$Id: expr.c,v 1.7 2001/08/19 07:46:52 peter Exp $"); +RCSID("$IdPath$"); /* allocate a new expression node, with children as defined. * If it's a unary operator, put the element on the right */ diff --git a/libyasm/expr.h b/libyasm/expr.h index 943ad514..8723d898 100644 --- a/libyasm/expr.h +++ b/libyasm/expr.h @@ -1,4 +1,4 @@ -/* $Id: expr.h,v 1.5 2001/08/19 03:52:58 peter Exp $ +/* $IdPath$ * Expression handling header file * * Copyright (C) 2001 Michael Urman diff --git a/libyasm/linemgr.h b/libyasm/linemgr.h index e33463c8..fbf4eb63 100644 --- a/libyasm/linemgr.h +++ b/libyasm/linemgr.h @@ -1,4 +1,4 @@ -/* $Id: linemgr.h,v 1.4 2001/08/18 22:15:12 peter Exp $ +/* $IdPath$ * Globals header file * * Copyright (C) 2001 Peter Johnson diff --git a/libyasm/objfmt.h b/libyasm/objfmt.h index 652157c6..24955b36 100644 --- a/libyasm/objfmt.h +++ b/libyasm/objfmt.h @@ -1,4 +1,4 @@ -/* $Id: objfmt.h,v 1.3 2001/09/15 07:16:59 peter Exp $ +/* $IdPath$ * Object format module interface header file * * Copyright (C) 2001 Peter Johnson diff --git a/libyasm/optimizer.h b/libyasm/optimizer.h index ff84f1e1..d039130b 100644 --- a/libyasm/optimizer.h +++ b/libyasm/optimizer.h @@ -1,4 +1,4 @@ -/* $Id: optimizer.h,v 1.1 2001/09/16 21:39:58 peter Exp $ +/* $IdPath$ * Optimizer module interface header file * * Copyright (C) 2001 Peter Johnson diff --git a/libyasm/parser.h b/libyasm/parser.h index de2f75f0..fb730830 100644 --- a/libyasm/parser.h +++ b/libyasm/parser.h @@ -1,4 +1,4 @@ -/* $Id: parser.h,v 1.4 2001/09/16 04:49:46 peter Exp $ +/* $IdPath$ * Parser module interface header file * * Copyright (C) 2001 Peter Johnson diff --git a/libyasm/preproc.h b/libyasm/preproc.h index 9ee4d3d3..9da830be 100644 --- a/libyasm/preproc.h +++ b/libyasm/preproc.h @@ -1,4 +1,4 @@ -/* $Id: preproc.h,v 1.3 2001/09/15 07:16:59 peter Exp $ +/* $IdPath$ * Preprocessor module interface header file * * Copyright (C) 2001 Peter Johnson diff --git a/libyasm/section.h b/libyasm/section.h index 0dd0b45b..592fb67b 100644 --- a/libyasm/section.h +++ b/libyasm/section.h @@ -1,4 +1,4 @@ -/* $Id: section.h,v 1.7 2001/09/16 18:53:47 peter Exp $ +/* $IdPath$ * Section header file * * Copyright (C) 2001 Peter Johnson diff --git a/libyasm/strcasecmp.c b/libyasm/strcasecmp.c index 1975b43f..56ff90b0 100644 --- a/libyasm/strcasecmp.c +++ b/libyasm/strcasecmp.c @@ -1,4 +1,4 @@ -/* $Id: strcasecmp.c,v 1.1 2001/09/16 09:13:00 peter Exp $ +/* $IdPath$ * strcasecmp() implementation for systems that don't have it or stricmp() * or strcmpi(). * @@ -47,7 +47,7 @@ static char sccsid[] = "@(#)strcasecmp.c 8.1 (Berkeley) 6/4/93"; # include #endif -RCSID("$Id: strcasecmp.c,v 1.1 2001/09/16 09:13:00 peter Exp $"); +RCSID("$IdPath$"); int strcasecmp(const char *s1, const char *s2) diff --git a/libyasm/symrec.c b/libyasm/symrec.c index d1ccf838..651222c7 100644 --- a/libyasm/symrec.c +++ b/libyasm/symrec.c @@ -1,4 +1,4 @@ -/* $Id: symrec.c,v 1.9 2001/08/30 03:45:26 peter Exp $ +/* $IdPath$ * Symbol table handling * * Copyright (C) 2001 Michael Urman @@ -37,7 +37,7 @@ #include "errwarn.h" #include "symrec.h" -RCSID("$Id: symrec.c,v 1.9 2001/08/30 03:45:26 peter Exp $"); +RCSID("$IdPath$"); /* private functions */ static symtab *symtab_get(char *); diff --git a/libyasm/symrec.h b/libyasm/symrec.h index a672b6db..e05912af 100644 --- a/libyasm/symrec.h +++ b/libyasm/symrec.h @@ -1,4 +1,4 @@ -/* $Id: symrec.h,v 1.6 2001/08/19 03:52:58 peter Exp $ +/* $IdPath$ * Symbol table handling header file * * Copyright (C) 2001 Michael Urman diff --git a/libyasm/util.h b/libyasm/util.h index 3cc8d863..3a56a18f 100644 --- a/libyasm/util.h +++ b/libyasm/util.h @@ -1,4 +1,4 @@ -/* $Id: util.h,v 1.8 2001/09/16 09:15:27 peter Exp $ +/* $IdPath$ * Defines prototypes for replacement functions if needed. * * Copyright (C) 2001 Peter Johnson diff --git a/libyasm/xstrdup.c b/libyasm/xstrdup.c index 47f0bed6..31f80c00 100644 --- a/libyasm/xstrdup.c +++ b/libyasm/xstrdup.c @@ -1,4 +1,4 @@ -/* $Id: xstrdup.c,v 1.4 2001/08/19 07:46:52 peter Exp $ +/* $IdPath$ * strdup() implementation for systems that don't have it. * * Copyright (c) 1988, 1993 @@ -54,7 +54,7 @@ void memcpy(void *, const void *, size_t); # endif #endif -RCSID("$Id: xstrdup.c,v 1.4 2001/08/19 07:46:52 peter Exp $"); +RCSID("$IdPath$"); char * strdup(const char *str) diff --git a/modules/arch/x86/expr.c b/modules/arch/x86/expr.c index 9a3b2104..20da3572 100644 --- a/modules/arch/x86/expr.c +++ b/modules/arch/x86/expr.c @@ -1,4 +1,4 @@ -/* $Id: expr.c,v 1.7 2001/08/19 07:46:52 peter Exp $ +/* $IdPath$ * Expression handling * * Copyright (C) 2001 Michael Urman @@ -37,7 +37,7 @@ #include "expr.h" #include "symrec.h" -RCSID("$Id: expr.c,v 1.7 2001/08/19 07:46:52 peter Exp $"); +RCSID("$IdPath$"); /* allocate a new expression node, with children as defined. * If it's a unary operator, put the element on the right */ diff --git a/modules/arch/x86/x86expr.c b/modules/arch/x86/x86expr.c index 3f0be59e..20da3572 100644 --- a/modules/arch/x86/x86expr.c +++ b/modules/arch/x86/x86expr.c @@ -1,4 +1,4 @@ -/* $Id: x86expr.c,v 1.7 2001/08/19 07:46:52 peter Exp $ +/* $IdPath$ * Expression handling * * Copyright (C) 2001 Michael Urman @@ -37,7 +37,7 @@ #include "expr.h" #include "symrec.h" -RCSID("$Id: x86expr.c,v 1.7 2001/08/19 07:46:52 peter Exp $"); +RCSID("$IdPath$"); /* allocate a new expression node, with children as defined. * If it's a unary operator, put the element on the right */ diff --git a/modules/objfmts/dbg/dbg-objfmt.c b/modules/objfmts/dbg/dbg-objfmt.c index fb7b14fd..57ffcef2 100644 --- a/modules/objfmts/dbg/dbg-objfmt.c +++ b/modules/objfmts/dbg/dbg-objfmt.c @@ -1,4 +1,4 @@ -/* $Id: dbg-objfmt.c,v 1.4 2001/09/15 07:16:59 peter Exp $ +/* $IdPath$ * Debugging object format (used to debug object format module interface) * * Copyright (C) 2001 Peter Johnson @@ -27,7 +27,7 @@ #include "objfmt.h" -RCSID("$Id: dbg-objfmt.c,v 1.4 2001/09/15 07:16:59 peter Exp $"); +RCSID("$IdPath$"); /* Define objfmt structure -- see objfmt.h for details */ objfmt dbg_objfmt = { diff --git a/modules/objfmts/dbg/objfmt.c b/modules/objfmts/dbg/objfmt.c index 82c67358..57ffcef2 100644 --- a/modules/objfmts/dbg/objfmt.c +++ b/modules/objfmts/dbg/objfmt.c @@ -1,4 +1,4 @@ -/* $Id: objfmt.c,v 1.4 2001/09/15 07:16:59 peter Exp $ +/* $IdPath$ * Debugging object format (used to debug object format module interface) * * Copyright (C) 2001 Peter Johnson @@ -27,7 +27,7 @@ #include "objfmt.h" -RCSID("$Id: objfmt.c,v 1.4 2001/09/15 07:16:59 peter Exp $"); +RCSID("$IdPath$"); /* Define objfmt structure -- see objfmt.h for details */ objfmt dbg_objfmt = { diff --git a/modules/optimizers/basic/basic-optimizer.c b/modules/optimizers/basic/basic-optimizer.c index 4e5ea719..d6535d94 100644 --- a/modules/optimizers/basic/basic-optimizer.c +++ b/modules/optimizers/basic/basic-optimizer.c @@ -1,4 +1,4 @@ -/* $Id: basic-optimizer.c,v 1.1 2001/09/16 21:39:58 peter Exp $ +/* $IdPath$ * Debugging optimizer (used to debug optimizer module interface) * * Copyright (C) 2001 Peter Johnson @@ -27,7 +27,7 @@ #include "optimizer.h" -RCSID("$Id: basic-optimizer.c,v 1.1 2001/09/16 21:39:58 peter Exp $"); +RCSID("$IdPath$"); /* Define optimizer structure -- see optimizer.h for details */ optimizer dbg_optimizer = { diff --git a/modules/optimizers/basic/optimizer.c b/modules/optimizers/basic/optimizer.c index 13eacfe4..d6535d94 100644 --- a/modules/optimizers/basic/optimizer.c +++ b/modules/optimizers/basic/optimizer.c @@ -1,4 +1,4 @@ -/* $Id: optimizer.c,v 1.1 2001/09/16 21:39:58 peter Exp $ +/* $IdPath$ * Debugging optimizer (used to debug optimizer module interface) * * Copyright (C) 2001 Peter Johnson @@ -27,7 +27,7 @@ #include "optimizer.h" -RCSID("$Id: optimizer.c,v 1.1 2001/09/16 21:39:58 peter Exp $"); +RCSID("$IdPath$"); /* Define optimizer structure -- see optimizer.h for details */ optimizer dbg_optimizer = { diff --git a/modules/optimizers/dbg/optimizer.c b/modules/optimizers/dbg/optimizer.c index 13eacfe4..d6535d94 100644 --- a/modules/optimizers/dbg/optimizer.c +++ b/modules/optimizers/dbg/optimizer.c @@ -1,4 +1,4 @@ -/* $Id: optimizer.c,v 1.1 2001/09/16 21:39:58 peter Exp $ +/* $IdPath$ * Debugging optimizer (used to debug optimizer module interface) * * Copyright (C) 2001 Peter Johnson @@ -27,7 +27,7 @@ #include "optimizer.h" -RCSID("$Id: optimizer.c,v 1.1 2001/09/16 21:39:58 peter Exp $"); +RCSID("$IdPath$"); /* Define optimizer structure -- see optimizer.h for details */ optimizer dbg_optimizer = { diff --git a/modules/parsers/nasm/bison.y.in b/modules/parsers/nasm/bison.y.in index 48f1433d..e13c54c7 100644 --- a/modules/parsers/nasm/bison.y.in +++ b/modules/parsers/nasm/bison.y.in @@ -1,4 +1,4 @@ -/* $Id: bison.y.in,v 1.32 2001/09/16 20:17:51 peter Exp $ +/* $IdPath$ * NASM-compatible bison parser * * Copyright (C) 2001 Peter Johnson, Michael Urman @@ -42,7 +42,7 @@ #include "bytecode.h" #include "section.h" -RCSID("$Id: bison.y.in,v 1.32 2001/09/16 20:17:51 peter Exp $"); +RCSID("$IdPath$"); #define YYDEBUG 1 diff --git a/modules/parsers/nasm/gen_instr.pl b/modules/parsers/nasm/gen_instr.pl index 8943e5a6..28714042 100755 --- a/modules/parsers/nasm/gen_instr.pl +++ b/modules/parsers/nasm/gen_instr.pl @@ -1,5 +1,5 @@ #!/usr/bin/perl -w -# $Id: gen_instr.pl,v 1.21 2001/09/16 19:47:21 peter Exp $ +# $IdPath$ # Generates NASM-compatible bison.y and token.l from instrs.dat. # # Copyright (C) 2001 Michael Urman diff --git a/modules/parsers/nasm/nasm-bison.y b/modules/parsers/nasm/nasm-bison.y index 490ec6bc..e13c54c7 100644 --- a/modules/parsers/nasm/nasm-bison.y +++ b/modules/parsers/nasm/nasm-bison.y @@ -1,4 +1,4 @@ -/* $Id: nasm-bison.y,v 1.32 2001/09/16 20:17:51 peter Exp $ +/* $IdPath$ * NASM-compatible bison parser * * Copyright (C) 2001 Peter Johnson, Michael Urman @@ -42,7 +42,7 @@ #include "bytecode.h" #include "section.h" -RCSID("$Id: nasm-bison.y,v 1.32 2001/09/16 20:17:51 peter Exp $"); +RCSID("$IdPath$"); #define YYDEBUG 1 diff --git a/modules/parsers/nasm/nasm-parser.c b/modules/parsers/nasm/nasm-parser.c index 836965ec..05dd1075 100644 --- a/modules/parsers/nasm/nasm-parser.c +++ b/modules/parsers/nasm/nasm-parser.c @@ -1,4 +1,4 @@ -/* $Id: nasm-parser.c,v 1.9 2001/09/16 18:53:47 peter Exp $ +/* $IdPath$ * NASM-compatible parser * * Copyright (C) 2001 Peter Johnson @@ -39,7 +39,7 @@ #include "preproc.h" #include "parser.h" -RCSID("$Id: nasm-parser.c,v 1.9 2001/09/16 18:53:47 peter Exp $"); +RCSID("$IdPath$"); extern FILE *nasm_parser_in; extern int nasm_parser_debug; diff --git a/modules/parsers/nasm/parser.c b/modules/parsers/nasm/parser.c index b2edcb8c..05dd1075 100644 --- a/modules/parsers/nasm/parser.c +++ b/modules/parsers/nasm/parser.c @@ -1,4 +1,4 @@ -/* $Id: parser.c,v 1.9 2001/09/16 18:53:47 peter Exp $ +/* $IdPath$ * NASM-compatible parser * * Copyright (C) 2001 Peter Johnson @@ -39,7 +39,7 @@ #include "preproc.h" #include "parser.h" -RCSID("$Id: parser.c,v 1.9 2001/09/16 18:53:47 peter Exp $"); +RCSID("$IdPath$"); extern FILE *nasm_parser_in; extern int nasm_parser_debug; diff --git a/modules/parsers/nasm/token.l.in b/modules/parsers/nasm/token.l.in index 3327a627..5e909d88 100644 --- a/modules/parsers/nasm/token.l.in +++ b/modules/parsers/nasm/token.l.in @@ -1,4 +1,4 @@ -/* $Id: token.l.in,v 1.19 2001/09/16 20:17:51 peter Exp $ +/* $IdPath$ * NASM-compatible lex lexer * * Copyright (C) 2001 Peter Johnson @@ -42,7 +42,7 @@ #include "bison.h" -RCSID("$Id: token.l.in,v 1.19 2001/09/16 20:17:51 peter Exp $"); +RCSID("$IdPath$"); #define yylval nasm_parser_lval diff --git a/modules/preprocs/raw/preproc.c b/modules/preprocs/raw/preproc.c index dbbbf997..c655e4df 100644 --- a/modules/preprocs/raw/preproc.c +++ b/modules/preprocs/raw/preproc.c @@ -1,4 +1,4 @@ -/* $Id: preproc.c,v 1.8 2001/09/16 21:07:22 peter Exp $ +/* $IdPath$ * Raw preprocessor (preforms NO preprocessing) * * Copyright (C) 2001 Peter Johnson @@ -35,7 +35,7 @@ #include "objfmt.h" #include "preproc.h" -RCSID("$Id: preproc.c,v 1.8 2001/09/16 21:07:22 peter Exp $"); +RCSID("$IdPath$"); static int is_interactive; static FILE *in; diff --git a/modules/preprocs/raw/raw-preproc.c b/modules/preprocs/raw/raw-preproc.c index 815f3ac1..c655e4df 100644 --- a/modules/preprocs/raw/raw-preproc.c +++ b/modules/preprocs/raw/raw-preproc.c @@ -1,4 +1,4 @@ -/* $Id: raw-preproc.c,v 1.8 2001/09/16 21:07:22 peter Exp $ +/* $IdPath$ * Raw preprocessor (preforms NO preprocessing) * * Copyright (C) 2001 Peter Johnson @@ -35,7 +35,7 @@ #include "objfmt.h" #include "preproc.h" -RCSID("$Id: raw-preproc.c,v 1.8 2001/09/16 21:07:22 peter Exp $"); +RCSID("$IdPath$"); static int is_interactive; static FILE *in; diff --git a/po/POTFILES.in b/po/POTFILES.in index a19b1a4f..c845409b 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -1,7 +1,7 @@ # List of source files containing translatable strings. # Copyright (c) 2001 Peter Johnson # -# $Id: POTFILES.in,v 1.1 2001/08/30 03:45:16 peter Exp $ +# $IdPath$ src/errwarn.c src/bytecode.c diff --git a/src/arch/x86/expr.c b/src/arch/x86/expr.c index 9a3b2104..20da3572 100644 --- a/src/arch/x86/expr.c +++ b/src/arch/x86/expr.c @@ -1,4 +1,4 @@ -/* $Id: expr.c,v 1.7 2001/08/19 07:46:52 peter Exp $ +/* $IdPath$ * Expression handling * * Copyright (C) 2001 Michael Urman @@ -37,7 +37,7 @@ #include "expr.h" #include "symrec.h" -RCSID("$Id: expr.c,v 1.7 2001/08/19 07:46:52 peter Exp $"); +RCSID("$IdPath$"); /* allocate a new expression node, with children as defined. * If it's a unary operator, put the element on the right */ diff --git a/src/arch/x86/x86expr.c b/src/arch/x86/x86expr.c index 3f0be59e..20da3572 100644 --- a/src/arch/x86/x86expr.c +++ b/src/arch/x86/x86expr.c @@ -1,4 +1,4 @@ -/* $Id: x86expr.c,v 1.7 2001/08/19 07:46:52 peter Exp $ +/* $IdPath$ * Expression handling * * Copyright (C) 2001 Michael Urman @@ -37,7 +37,7 @@ #include "expr.h" #include "symrec.h" -RCSID("$Id: x86expr.c,v 1.7 2001/08/19 07:46:52 peter Exp $"); +RCSID("$IdPath$"); /* allocate a new expression node, with children as defined. * If it's a unary operator, put the element on the right */ diff --git a/src/bytecode.c b/src/bytecode.c index 04812785..e9eb0283 100644 --- a/src/bytecode.c +++ b/src/bytecode.c @@ -1,4 +1,4 @@ -/* $Id: bytecode.c,v 1.22 2001/09/16 20:17:23 peter Exp $ +/* $IdPath$ * Bytecode utility functions * * Copyright (C) 2001 Peter Johnson @@ -41,7 +41,7 @@ #include "bytecode.h" -RCSID("$Id: bytecode.c,v 1.22 2001/09/16 20:17:23 peter Exp $"); +RCSID("$IdPath$"); /* Static structures for when NULL is passed to conversion functions. */ /* for Convert*ToEA() */ diff --git a/src/bytecode.h b/src/bytecode.h index e4eb4c1f..5f1e45b3 100644 --- a/src/bytecode.h +++ b/src/bytecode.h @@ -1,4 +1,4 @@ -/* $Id: bytecode.h,v 1.19 2001/09/16 19:44:49 peter Exp $ +/* $IdPath$ * Bytecode utility functions header file * * Copyright (C) 2001 Peter Johnson diff --git a/src/compat-queue.h b/src/compat-queue.h index db322c0c..ce7a4850 100644 --- a/src/compat-queue.h +++ b/src/compat-queue.h @@ -1,4 +1,4 @@ -/* $Id: compat-queue.h,v 1.3 2001/08/19 05:40:20 peter Exp $ +/* $IdPath$ * implementation for systems that don't have it. * * Copyright (c) 1991, 1993 diff --git a/src/errwarn.c b/src/errwarn.c index 83a54ab8..03c0a657 100644 --- a/src/errwarn.c +++ b/src/errwarn.c @@ -1,4 +1,4 @@ -/* $Id: errwarn.c,v 1.24 2001/09/16 05:39:35 peter Exp $ +/* $IdPath$ * Error and warning reporting and related functions. * * Copyright (C) 2001 Peter Johnson @@ -45,7 +45,7 @@ #include "globals.h" #include "errwarn.h" -RCSID("$Id: errwarn.c,v 1.24 2001/09/16 05:39:35 peter Exp $"); +RCSID("$IdPath$"); /* Total error count for entire assembler run. * Assembler should exit with EXIT_FAILURE if this is >= 0 on finish. */ diff --git a/src/errwarn.h b/src/errwarn.h index bd9e41ed..e3743508 100644 --- a/src/errwarn.h +++ b/src/errwarn.h @@ -1,4 +1,4 @@ -/* $Id: errwarn.h,v 1.14 2001/08/30 03:45:26 peter Exp $ +/* $IdPath$ * Error and warning reporting and related functions header file. * * Copyright (C) 2001 Peter Johnson diff --git a/src/expr.c b/src/expr.c index 9a3b2104..20da3572 100644 --- a/src/expr.c +++ b/src/expr.c @@ -1,4 +1,4 @@ -/* $Id: expr.c,v 1.7 2001/08/19 07:46:52 peter Exp $ +/* $IdPath$ * Expression handling * * Copyright (C) 2001 Michael Urman @@ -37,7 +37,7 @@ #include "expr.h" #include "symrec.h" -RCSID("$Id: expr.c,v 1.7 2001/08/19 07:46:52 peter Exp $"); +RCSID("$IdPath$"); /* allocate a new expression node, with children as defined. * If it's a unary operator, put the element on the right */ diff --git a/src/expr.h b/src/expr.h index 943ad514..8723d898 100644 --- a/src/expr.h +++ b/src/expr.h @@ -1,4 +1,4 @@ -/* $Id: expr.h,v 1.5 2001/08/19 03:52:58 peter Exp $ +/* $IdPath$ * Expression handling header file * * Copyright (C) 2001 Michael Urman diff --git a/src/globals.h b/src/globals.h index 5083ebdc..fbf4eb63 100644 --- a/src/globals.h +++ b/src/globals.h @@ -1,4 +1,4 @@ -/* $Id: globals.h,v 1.4 2001/08/18 22:15:12 peter Exp $ +/* $IdPath$ * Globals header file * * Copyright (C) 2001 Peter Johnson diff --git a/src/instrs.dat b/src/instrs.dat index 9abe6648..c84d3aa2 100644 --- a/src/instrs.dat +++ b/src/instrs.dat @@ -1,4 +1,4 @@ -; $Id: instrs.dat,v 1.31 2001/08/19 02:09:03 peter Exp $ +; $IdPath$ ; List of valid instruction/operand combinations ; ; Copyright (C) 2001 Peter Johnson diff --git a/src/linemgr.h b/src/linemgr.h index e33463c8..fbf4eb63 100644 --- a/src/linemgr.h +++ b/src/linemgr.h @@ -1,4 +1,4 @@ -/* $Id: linemgr.h,v 1.4 2001/08/18 22:15:12 peter Exp $ +/* $IdPath$ * Globals header file * * Copyright (C) 2001 Peter Johnson diff --git a/src/main.c b/src/main.c index 46526fab..eb8ce568 100644 --- a/src/main.c +++ b/src/main.c @@ -1,4 +1,4 @@ -/* $Id: main.c,v 1.12 2001/09/16 04:49:46 peter Exp $ +/* $IdPath$ * Program entry point, command line parsing * * Copyright (C) 2001 Peter Johnson @@ -38,7 +38,7 @@ #include "preproc.h" #include "parser.h" -RCSID("$Id: main.c,v 1.12 2001/09/16 04:49:46 peter Exp $"); +RCSID("$IdPath$"); char *filename = (char *)NULL; unsigned int line_number = 1; diff --git a/src/objfmt.h b/src/objfmt.h index 652157c6..24955b36 100644 --- a/src/objfmt.h +++ b/src/objfmt.h @@ -1,4 +1,4 @@ -/* $Id: objfmt.h,v 1.3 2001/09/15 07:16:59 peter Exp $ +/* $IdPath$ * Object format module interface header file * * Copyright (C) 2001 Peter Johnson diff --git a/src/objfmts/dbg/dbg-objfmt.c b/src/objfmts/dbg/dbg-objfmt.c index fb7b14fd..57ffcef2 100644 --- a/src/objfmts/dbg/dbg-objfmt.c +++ b/src/objfmts/dbg/dbg-objfmt.c @@ -1,4 +1,4 @@ -/* $Id: dbg-objfmt.c,v 1.4 2001/09/15 07:16:59 peter Exp $ +/* $IdPath$ * Debugging object format (used to debug object format module interface) * * Copyright (C) 2001 Peter Johnson @@ -27,7 +27,7 @@ #include "objfmt.h" -RCSID("$Id: dbg-objfmt.c,v 1.4 2001/09/15 07:16:59 peter Exp $"); +RCSID("$IdPath$"); /* Define objfmt structure -- see objfmt.h for details */ objfmt dbg_objfmt = { diff --git a/src/objfmts/dbg/objfmt.c b/src/objfmts/dbg/objfmt.c index 82c67358..57ffcef2 100644 --- a/src/objfmts/dbg/objfmt.c +++ b/src/objfmts/dbg/objfmt.c @@ -1,4 +1,4 @@ -/* $Id: objfmt.c,v 1.4 2001/09/15 07:16:59 peter Exp $ +/* $IdPath$ * Debugging object format (used to debug object format module interface) * * Copyright (C) 2001 Peter Johnson @@ -27,7 +27,7 @@ #include "objfmt.h" -RCSID("$Id: objfmt.c,v 1.4 2001/09/15 07:16:59 peter Exp $"); +RCSID("$IdPath$"); /* Define objfmt structure -- see objfmt.h for details */ objfmt dbg_objfmt = { diff --git a/src/optimizer.h b/src/optimizer.h index ff84f1e1..d039130b 100644 --- a/src/optimizer.h +++ b/src/optimizer.h @@ -1,4 +1,4 @@ -/* $Id: optimizer.h,v 1.1 2001/09/16 21:39:58 peter Exp $ +/* $IdPath$ * Optimizer module interface header file * * Copyright (C) 2001 Peter Johnson diff --git a/src/optimizers/basic/basic-optimizer.c b/src/optimizers/basic/basic-optimizer.c index 4e5ea719..d6535d94 100644 --- a/src/optimizers/basic/basic-optimizer.c +++ b/src/optimizers/basic/basic-optimizer.c @@ -1,4 +1,4 @@ -/* $Id: basic-optimizer.c,v 1.1 2001/09/16 21:39:58 peter Exp $ +/* $IdPath$ * Debugging optimizer (used to debug optimizer module interface) * * Copyright (C) 2001 Peter Johnson @@ -27,7 +27,7 @@ #include "optimizer.h" -RCSID("$Id: basic-optimizer.c,v 1.1 2001/09/16 21:39:58 peter Exp $"); +RCSID("$IdPath$"); /* Define optimizer structure -- see optimizer.h for details */ optimizer dbg_optimizer = { diff --git a/src/optimizers/basic/optimizer.c b/src/optimizers/basic/optimizer.c index 13eacfe4..d6535d94 100644 --- a/src/optimizers/basic/optimizer.c +++ b/src/optimizers/basic/optimizer.c @@ -1,4 +1,4 @@ -/* $Id: optimizer.c,v 1.1 2001/09/16 21:39:58 peter Exp $ +/* $IdPath$ * Debugging optimizer (used to debug optimizer module interface) * * Copyright (C) 2001 Peter Johnson @@ -27,7 +27,7 @@ #include "optimizer.h" -RCSID("$Id: optimizer.c,v 1.1 2001/09/16 21:39:58 peter Exp $"); +RCSID("$IdPath$"); /* Define optimizer structure -- see optimizer.h for details */ optimizer dbg_optimizer = { diff --git a/src/optimizers/dbg/optimizer.c b/src/optimizers/dbg/optimizer.c index 13eacfe4..d6535d94 100644 --- a/src/optimizers/dbg/optimizer.c +++ b/src/optimizers/dbg/optimizer.c @@ -1,4 +1,4 @@ -/* $Id: optimizer.c,v 1.1 2001/09/16 21:39:58 peter Exp $ +/* $IdPath$ * Debugging optimizer (used to debug optimizer module interface) * * Copyright (C) 2001 Peter Johnson @@ -27,7 +27,7 @@ #include "optimizer.h" -RCSID("$Id: optimizer.c,v 1.1 2001/09/16 21:39:58 peter Exp $"); +RCSID("$IdPath$"); /* Define optimizer structure -- see optimizer.h for details */ optimizer dbg_optimizer = { diff --git a/src/parser.c b/src/parser.c index af3a04ba..c6bc72ff 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,4 +1,4 @@ -/* $Id: parser.c,v 1.2 2001/09/16 17:21:33 peter Exp $ +/* $IdPath$ * Generic functions for all parsers * * Copyright (C) 2001 Peter Johnson @@ -42,7 +42,7 @@ #include "preproc.h" #include "parser.h" -RCSID("$Id: parser.c,v 1.2 2001/09/16 17:21:33 peter Exp $"); +RCSID("$IdPath$"); /* NULL-terminated list of all available parsers. * Someday change this if we dynamically load parsers at runtime. diff --git a/src/parser.h b/src/parser.h index de2f75f0..fb730830 100644 --- a/src/parser.h +++ b/src/parser.h @@ -1,4 +1,4 @@ -/* $Id: parser.h,v 1.4 2001/09/16 04:49:46 peter Exp $ +/* $IdPath$ * Parser module interface header file * * Copyright (C) 2001 Peter Johnson diff --git a/src/parsers/nasm/bison.y.in b/src/parsers/nasm/bison.y.in index 48f1433d..e13c54c7 100644 --- a/src/parsers/nasm/bison.y.in +++ b/src/parsers/nasm/bison.y.in @@ -1,4 +1,4 @@ -/* $Id: bison.y.in,v 1.32 2001/09/16 20:17:51 peter Exp $ +/* $IdPath$ * NASM-compatible bison parser * * Copyright (C) 2001 Peter Johnson, Michael Urman @@ -42,7 +42,7 @@ #include "bytecode.h" #include "section.h" -RCSID("$Id: bison.y.in,v 1.32 2001/09/16 20:17:51 peter Exp $"); +RCSID("$IdPath$"); #define YYDEBUG 1 diff --git a/src/parsers/nasm/gen_instr.pl b/src/parsers/nasm/gen_instr.pl index 8943e5a6..28714042 100755 --- a/src/parsers/nasm/gen_instr.pl +++ b/src/parsers/nasm/gen_instr.pl @@ -1,5 +1,5 @@ #!/usr/bin/perl -w -# $Id: gen_instr.pl,v 1.21 2001/09/16 19:47:21 peter Exp $ +# $IdPath$ # Generates NASM-compatible bison.y and token.l from instrs.dat. # # Copyright (C) 2001 Michael Urman diff --git a/src/parsers/nasm/nasm-bison.y b/src/parsers/nasm/nasm-bison.y index 490ec6bc..e13c54c7 100644 --- a/src/parsers/nasm/nasm-bison.y +++ b/src/parsers/nasm/nasm-bison.y @@ -1,4 +1,4 @@ -/* $Id: nasm-bison.y,v 1.32 2001/09/16 20:17:51 peter Exp $ +/* $IdPath$ * NASM-compatible bison parser * * Copyright (C) 2001 Peter Johnson, Michael Urman @@ -42,7 +42,7 @@ #include "bytecode.h" #include "section.h" -RCSID("$Id: nasm-bison.y,v 1.32 2001/09/16 20:17:51 peter Exp $"); +RCSID("$IdPath$"); #define YYDEBUG 1 diff --git a/src/parsers/nasm/nasm-parser.c b/src/parsers/nasm/nasm-parser.c index 836965ec..05dd1075 100644 --- a/src/parsers/nasm/nasm-parser.c +++ b/src/parsers/nasm/nasm-parser.c @@ -1,4 +1,4 @@ -/* $Id: nasm-parser.c,v 1.9 2001/09/16 18:53:47 peter Exp $ +/* $IdPath$ * NASM-compatible parser * * Copyright (C) 2001 Peter Johnson @@ -39,7 +39,7 @@ #include "preproc.h" #include "parser.h" -RCSID("$Id: nasm-parser.c,v 1.9 2001/09/16 18:53:47 peter Exp $"); +RCSID("$IdPath$"); extern FILE *nasm_parser_in; extern int nasm_parser_debug; diff --git a/src/parsers/nasm/parser.c b/src/parsers/nasm/parser.c index b2edcb8c..05dd1075 100644 --- a/src/parsers/nasm/parser.c +++ b/src/parsers/nasm/parser.c @@ -1,4 +1,4 @@ -/* $Id: parser.c,v 1.9 2001/09/16 18:53:47 peter Exp $ +/* $IdPath$ * NASM-compatible parser * * Copyright (C) 2001 Peter Johnson @@ -39,7 +39,7 @@ #include "preproc.h" #include "parser.h" -RCSID("$Id: parser.c,v 1.9 2001/09/16 18:53:47 peter Exp $"); +RCSID("$IdPath$"); extern FILE *nasm_parser_in; extern int nasm_parser_debug; diff --git a/src/parsers/nasm/token.l.in b/src/parsers/nasm/token.l.in index 3327a627..5e909d88 100644 --- a/src/parsers/nasm/token.l.in +++ b/src/parsers/nasm/token.l.in @@ -1,4 +1,4 @@ -/* $Id: token.l.in,v 1.19 2001/09/16 20:17:51 peter Exp $ +/* $IdPath$ * NASM-compatible lex lexer * * Copyright (C) 2001 Peter Johnson @@ -42,7 +42,7 @@ #include "bison.h" -RCSID("$Id: token.l.in,v 1.19 2001/09/16 20:17:51 peter Exp $"); +RCSID("$IdPath$"); #define yylval nasm_parser_lval diff --git a/src/preproc.h b/src/preproc.h index 9ee4d3d3..9da830be 100644 --- a/src/preproc.h +++ b/src/preproc.h @@ -1,4 +1,4 @@ -/* $Id: preproc.h,v 1.3 2001/09/15 07:16:59 peter Exp $ +/* $IdPath$ * Preprocessor module interface header file * * Copyright (C) 2001 Peter Johnson diff --git a/src/preprocs/raw/preproc.c b/src/preprocs/raw/preproc.c index dbbbf997..c655e4df 100644 --- a/src/preprocs/raw/preproc.c +++ b/src/preprocs/raw/preproc.c @@ -1,4 +1,4 @@ -/* $Id: preproc.c,v 1.8 2001/09/16 21:07:22 peter Exp $ +/* $IdPath$ * Raw preprocessor (preforms NO preprocessing) * * Copyright (C) 2001 Peter Johnson @@ -35,7 +35,7 @@ #include "objfmt.h" #include "preproc.h" -RCSID("$Id: preproc.c,v 1.8 2001/09/16 21:07:22 peter Exp $"); +RCSID("$IdPath$"); static int is_interactive; static FILE *in; diff --git a/src/preprocs/raw/raw-preproc.c b/src/preprocs/raw/raw-preproc.c index 815f3ac1..c655e4df 100644 --- a/src/preprocs/raw/raw-preproc.c +++ b/src/preprocs/raw/raw-preproc.c @@ -1,4 +1,4 @@ -/* $Id: raw-preproc.c,v 1.8 2001/09/16 21:07:22 peter Exp $ +/* $IdPath$ * Raw preprocessor (preforms NO preprocessing) * * Copyright (C) 2001 Peter Johnson @@ -35,7 +35,7 @@ #include "objfmt.h" #include "preproc.h" -RCSID("$Id: raw-preproc.c,v 1.8 2001/09/16 21:07:22 peter Exp $"); +RCSID("$IdPath$"); static int is_interactive; static FILE *in; diff --git a/src/section.h b/src/section.h index 0dd0b45b..592fb67b 100644 --- a/src/section.h +++ b/src/section.h @@ -1,4 +1,4 @@ -/* $Id: section.h,v 1.7 2001/09/16 18:53:47 peter Exp $ +/* $IdPath$ * Section header file * * Copyright (C) 2001 Peter Johnson diff --git a/src/strcasecmp.c b/src/strcasecmp.c index 1975b43f..56ff90b0 100644 --- a/src/strcasecmp.c +++ b/src/strcasecmp.c @@ -1,4 +1,4 @@ -/* $Id: strcasecmp.c,v 1.1 2001/09/16 09:13:00 peter Exp $ +/* $IdPath$ * strcasecmp() implementation for systems that don't have it or stricmp() * or strcmpi(). * @@ -47,7 +47,7 @@ static char sccsid[] = "@(#)strcasecmp.c 8.1 (Berkeley) 6/4/93"; # include #endif -RCSID("$Id: strcasecmp.c,v 1.1 2001/09/16 09:13:00 peter Exp $"); +RCSID("$IdPath$"); int strcasecmp(const char *s1, const char *s2) diff --git a/src/strdup.c b/src/strdup.c index 310da43e..31f80c00 100644 --- a/src/strdup.c +++ b/src/strdup.c @@ -1,4 +1,4 @@ -/* $Id: strdup.c,v 1.4 2001/08/19 07:46:52 peter Exp $ +/* $IdPath$ * strdup() implementation for systems that don't have it. * * Copyright (c) 1988, 1993 @@ -54,7 +54,7 @@ void memcpy(void *, const void *, size_t); # endif #endif -RCSID("$Id: strdup.c,v 1.4 2001/08/19 07:46:52 peter Exp $"); +RCSID("$IdPath$"); char * strdup(const char *str) diff --git a/src/strtoul.c b/src/strtoul.c index 3be4cdb0..9eedc365 100644 --- a/src/strtoul.c +++ b/src/strtoul.c @@ -1,4 +1,4 @@ -/* $Id: strtoul.c,v 1.3 2001/08/19 07:46:52 peter Exp $ +/* $IdPath$ * strtoul() implementation for systems that don't have it. * * Copyright (c) 1990, 1993 @@ -49,7 +49,7 @@ static char sccsid[] = "@(#)strtoul.c 8.1 (Berkeley) 6/4/93"; # include #endif -RCSID("$Id: strtoul.c,v 1.3 2001/08/19 07:46:52 peter Exp $"); +RCSID("$IdPath$"); /* * Convert a string to an unsigned long integer. diff --git a/src/symrec.c b/src/symrec.c index d1ccf838..651222c7 100644 --- a/src/symrec.c +++ b/src/symrec.c @@ -1,4 +1,4 @@ -/* $Id: symrec.c,v 1.9 2001/08/30 03:45:26 peter Exp $ +/* $IdPath$ * Symbol table handling * * Copyright (C) 2001 Michael Urman @@ -37,7 +37,7 @@ #include "errwarn.h" #include "symrec.h" -RCSID("$Id: symrec.c,v 1.9 2001/08/30 03:45:26 peter Exp $"); +RCSID("$IdPath$"); /* private functions */ static symtab *symtab_get(char *); diff --git a/src/symrec.h b/src/symrec.h index a672b6db..e05912af 100644 --- a/src/symrec.h +++ b/src/symrec.h @@ -1,4 +1,4 @@ -/* $Id: symrec.h,v 1.6 2001/08/19 03:52:58 peter Exp $ +/* $IdPath$ * Symbol table handling header file * * Copyright (C) 2001 Michael Urman diff --git a/src/util.h b/src/util.h index 3cc8d863..3a56a18f 100644 --- a/src/util.h +++ b/src/util.h @@ -1,4 +1,4 @@ -/* $Id: util.h,v 1.8 2001/09/16 09:15:27 peter Exp $ +/* $IdPath$ * Defines prototypes for replacement functions if needed. * * Copyright (C) 2001 Peter Johnson diff --git a/src/xstrdup.c b/src/xstrdup.c index 47f0bed6..31f80c00 100644 --- a/src/xstrdup.c +++ b/src/xstrdup.c @@ -1,4 +1,4 @@ -/* $Id: xstrdup.c,v 1.4 2001/08/19 07:46:52 peter Exp $ +/* $IdPath$ * strdup() implementation for systems that don't have it. * * Copyright (c) 1988, 1993 @@ -54,7 +54,7 @@ void memcpy(void *, const void *, size_t); # endif #endif -RCSID("$Id: xstrdup.c,v 1.4 2001/08/19 07:46:52 peter Exp $"); +RCSID("$IdPath$"); char * strdup(const char *str) diff --git a/util.h b/util.h index 3cc8d863..3a56a18f 100644 --- a/util.h +++ b/util.h @@ -1,4 +1,4 @@ -/* $Id: util.h,v 1.8 2001/09/16 09:15:27 peter Exp $ +/* $IdPath$ * Defines prototypes for replacement functions if needed. * * Copyright (C) 2001 Peter Johnson