]> granicus.if.org Git - yasm/commitdiff
$Id$ -> $IdPath$.
authorPeter Johnson <peter@tortall.net>
Mon, 17 Sep 2001 04:12:20 +0000 (04:12 -0000)
committerPeter Johnson <peter@tortall.net>
Mon, 17 Sep 2001 04:12:20 +0000 (04:12 -0000)
svn path=/trunk/yasm/; revision=174

79 files changed:
acconfig.h
acinclude.m4
configure.ac
configure.in
frontends/yasm/yasm.c
libyasm/bytecode.c
libyasm/bytecode.h
libyasm/compat-queue.h
libyasm/errwarn.c
libyasm/errwarn.h
libyasm/expr.c
libyasm/expr.h
libyasm/linemgr.h
libyasm/objfmt.h
libyasm/optimizer.h
libyasm/parser.h
libyasm/preproc.h
libyasm/section.h
libyasm/strcasecmp.c
libyasm/symrec.c
libyasm/symrec.h
libyasm/util.h
libyasm/xstrdup.c
modules/arch/x86/expr.c
modules/arch/x86/x86expr.c
modules/objfmts/dbg/dbg-objfmt.c
modules/objfmts/dbg/objfmt.c
modules/optimizers/basic/basic-optimizer.c
modules/optimizers/basic/optimizer.c
modules/optimizers/dbg/optimizer.c
modules/parsers/nasm/bison.y.in
modules/parsers/nasm/gen_instr.pl
modules/parsers/nasm/nasm-bison.y
modules/parsers/nasm/nasm-parser.c
modules/parsers/nasm/parser.c
modules/parsers/nasm/token.l.in
modules/preprocs/raw/preproc.c
modules/preprocs/raw/raw-preproc.c
po/POTFILES.in
src/arch/x86/expr.c
src/arch/x86/x86expr.c
src/bytecode.c
src/bytecode.h
src/compat-queue.h
src/errwarn.c
src/errwarn.h
src/expr.c
src/expr.h
src/globals.h
src/instrs.dat
src/linemgr.h
src/main.c
src/objfmt.h
src/objfmts/dbg/dbg-objfmt.c
src/objfmts/dbg/objfmt.c
src/optimizer.h
src/optimizers/basic/basic-optimizer.c
src/optimizers/basic/optimizer.c
src/optimizers/dbg/optimizer.c
src/parser.c
src/parser.h
src/parsers/nasm/bison.y.in
src/parsers/nasm/gen_instr.pl
src/parsers/nasm/nasm-bison.y
src/parsers/nasm/nasm-parser.c
src/parsers/nasm/parser.c
src/parsers/nasm/token.l.in
src/preproc.h
src/preprocs/raw/preproc.c
src/preprocs/raw/raw-preproc.c
src/section.h
src/strcasecmp.c
src/strdup.c
src/strtoul.c
src/symrec.c
src/symrec.h
src/util.h
src/xstrdup.c
util.h

index 5e9306672123bd63e572e37829b5bbaa52743665..1fab28db9c41d0a129c0dccc75a686a0617268dc 100644 (file)
@@ -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
index 21ccf800a526aa8751b8a54af6af9e12a17cb8fb..0aa506813550edea87ed91fc30d0bac73525ee7d 100644 (file)
@@ -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
index 7da2ea99843d28700a7c5e4d245ee0175081ea24..174619059583693b2d36c68e45dc688a394cc4d7 100644 (file)
@@ -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)
index 52797c4e5fe333d4cf9ffe9d9c16b65bfbeefeb8..174619059583693b2d36c68e45dc688a394cc4d7 100644 (file)
@@ -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)
index 25ea8f32b815a692f46dde977369294f4c95b000..eb8ce5686ced1244c9b7d93d85cdec0e2d6b6ac9 100644 (file)
@@ -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;
index 0481278545bf3b96273f78b00909e137aec6fa1e..e9eb0283fa3cf5c77f8bfdb27c25bbe5cd42c6b1 100644 (file)
@@ -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() */
index e4eb4c1f0a156bc38df1a1af96302cdc93ba932f..5f1e45b3fbf43412877ad17a3089efe91856861d 100644 (file)
@@ -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
index db322c0cd4f43973a52f2a3596cb68453a5cc69b..ce7a485041477b3860105ed0ff12b343903010ce 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: compat-queue.h,v 1.3 2001/08/19 05:40:20 peter Exp $
+/* $IdPath$
  * <sys/queue.h> implementation for systems that don't have it.
  *
  * Copyright (c) 1991, 1993
index 83a54ab88679a00fc3f930a387b94fb7ecad7638..03c0a65717f396028af7671ce633f4967597677e 100644 (file)
@@ -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. */
index bd9e41ede3cbfada22003fe43111d7e755880ec8..e3743508847bd435a732fe107a41685ba0f0e590 100644 (file)
@@ -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
index 9a3b2104f5edef6b693b3ec1ad56cba0c019c70b..20da35721c9ba76b24ca9ae95b570cb7288e8e51 100644 (file)
@@ -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 */
index 943ad514793f74a5aa7aad69e6e9e70e7bf31693..8723d8980924b99d12745ee02ddbae842fc12f75 100644 (file)
@@ -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
index e33463c8f36617429bf20099a3fc3cd2dd127ad0..fbf4eb63ca74b1c95a8af22208cc3497b6996152 100644 (file)
@@ -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
index 652157c674578f0407dc481eaa3f17943e8a80ba..24955b36846da2f7f15dbb27719a182c15b9d53a 100644 (file)
@@ -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
index ff84f1e16310b3f038986e79748766c06e7f4291..d039130b3eb6b3a083daec38e9830da6dccca887 100644 (file)
@@ -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
index de2f75f0153d8b8a1c7eb0a16e88e14cebf3bfaf..fb730830d89a0ec08e1c436ac52379dfa00db7f0 100644 (file)
@@ -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
index 9ee4d3d30ec248317dc8165fd43cc2cb4ff1ec2f..9da830bea3f823f54abc4d703c34f9b62e149997 100644 (file)
@@ -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
index 0dd0b45ba90dd091cfbb1bfa002236ea43de8bde..592fb67b6d4e78d7601e171498df4e058d645f6b 100644 (file)
@@ -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
index 1975b43f7602081abf9f18bd842ecf412b453aa4..56ff90b0114375587e4f4de94abfd0eb96fa5580 100644 (file)
@@ -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 <ctype.h>
 #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)
index d1ccf8389a603681c184f725667bebeb98d152e0..651222c77e980c67d0d717503aa3f972282a1e5d 100644 (file)
@@ -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 *);
index a672b6db4496340b20e3f2dab21390c853901fb3..e05912af05bb835c1748d6b4047cf7ab7bbe2bb7 100644 (file)
@@ -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
index 3cc8d86368750e5c51569dc451f48399977812d4..3a56a18f54e70161e725e52ab466eb6c18f500f3 100644 (file)
@@ -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
index 47f0bed6406d32a783f442284cb812d58a4d4530..31f80c0006846185326fc772a2c9644aa4a94f0a 100644 (file)
@@ -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)
index 9a3b2104f5edef6b693b3ec1ad56cba0c019c70b..20da35721c9ba76b24ca9ae95b570cb7288e8e51 100644 (file)
@@ -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 */
index 3f0be59e61c0e66807cf26bd6fd46263871c28c6..20da35721c9ba76b24ca9ae95b570cb7288e8e51 100644 (file)
@@ -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 */
index fb7b14fd75148cf9fb34d10375829aeba519493a..57ffcef29ffffa5fe18419ba42d419e0335409dd 100644 (file)
@@ -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 = {
index 82c67358f573b81f89e4d64c3bfda68e3099e59b..57ffcef29ffffa5fe18419ba42d419e0335409dd 100644 (file)
@@ -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 = {
index 4e5ea719dca6a812c765d58400e30f086d525f3a..d6535d942c1bce56e0f55d55088212a4dd40ec48 100644 (file)
@@ -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 = {
index 13eacfe471296c05229651e7c591086c3f582837..d6535d942c1bce56e0f55d55088212a4dd40ec48 100644 (file)
@@ -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 = {
index 13eacfe471296c05229651e7c591086c3f582837..d6535d942c1bce56e0f55d55088212a4dd40ec48 100644 (file)
@@ -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 = {
index 48f1433da623a72fee67396135a97b3d8a367cef..e13c54c7ab8d8b6bc38c806174057097553c61b9 100644 (file)
@@ -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
 
index 8943e5a692073a47a8071c91e06991d418edf266..2871404283cc54b884b2ab63f8b4fccfe12e3895 100755 (executable)
@@ -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
index 490ec6bcd833e83486cf971e09cc617b1820f2d5..e13c54c7ab8d8b6bc38c806174057097553c61b9 100644 (file)
@@ -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
 
index 836965ecedf27507b92c11e0f4ac4664a59660f0..05dd10759510fc5ae387bf7623aefa2b2dfd751b 100644 (file)
@@ -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;
index b2edcb8ccfeb79359d69103c7de0e52829e6160c..05dd10759510fc5ae387bf7623aefa2b2dfd751b 100644 (file)
@@ -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;
index 3327a6276a0037f9761a99d94857849f37dbb48d..5e909d881cfe4d639b1e20bb626bd5ad423c2a12 100644 (file)
@@ -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
 
index dbbbf9972c4f846a2b2a3f81e0b6897a433d539e..c655e4dfe589a54bded048f73595383e12d40416 100644 (file)
@@ -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;
index 815f3ac1a9b00049ad7d200c55423f707fe3d4f2..c655e4dfe589a54bded048f73595383e12d40416 100644 (file)
@@ -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;
index a19b1a4ffde0af4f48e499f89e26342adcd588e5..c845409b076de0fa73ddd7c8c9590c5f2c7cbe8c 100644 (file)
@@ -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
index 9a3b2104f5edef6b693b3ec1ad56cba0c019c70b..20da35721c9ba76b24ca9ae95b570cb7288e8e51 100644 (file)
@@ -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 */
index 3f0be59e61c0e66807cf26bd6fd46263871c28c6..20da35721c9ba76b24ca9ae95b570cb7288e8e51 100644 (file)
@@ -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 */
index 0481278545bf3b96273f78b00909e137aec6fa1e..e9eb0283fa3cf5c77f8bfdb27c25bbe5cd42c6b1 100644 (file)
@@ -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() */
index e4eb4c1f0a156bc38df1a1af96302cdc93ba932f..5f1e45b3fbf43412877ad17a3089efe91856861d 100644 (file)
@@ -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
index db322c0cd4f43973a52f2a3596cb68453a5cc69b..ce7a485041477b3860105ed0ff12b343903010ce 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: compat-queue.h,v 1.3 2001/08/19 05:40:20 peter Exp $
+/* $IdPath$
  * <sys/queue.h> implementation for systems that don't have it.
  *
  * Copyright (c) 1991, 1993
index 83a54ab88679a00fc3f930a387b94fb7ecad7638..03c0a65717f396028af7671ce633f4967597677e 100644 (file)
@@ -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. */
index bd9e41ede3cbfada22003fe43111d7e755880ec8..e3743508847bd435a732fe107a41685ba0f0e590 100644 (file)
@@ -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
index 9a3b2104f5edef6b693b3ec1ad56cba0c019c70b..20da35721c9ba76b24ca9ae95b570cb7288e8e51 100644 (file)
@@ -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 */
index 943ad514793f74a5aa7aad69e6e9e70e7bf31693..8723d8980924b99d12745ee02ddbae842fc12f75 100644 (file)
@@ -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
index 5083ebdc50d310712e34f52d6a1025e147a5a5ee..fbf4eb63ca74b1c95a8af22208cc3497b6996152 100644 (file)
@@ -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
index 9abe6648c7ab42294ecfbf7cab6487ca0c2e8331..c84d3aa20c086ab87610bf3cc33839f35937d096 100644 (file)
@@ -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
index e33463c8f36617429bf20099a3fc3cd2dd127ad0..fbf4eb63ca74b1c95a8af22208cc3497b6996152 100644 (file)
@@ -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
index 46526fab03b5c9b0035c6aee3bd752003d3cd572..eb8ce5686ced1244c9b7d93d85cdec0e2d6b6ac9 100644 (file)
@@ -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;
index 652157c674578f0407dc481eaa3f17943e8a80ba..24955b36846da2f7f15dbb27719a182c15b9d53a 100644 (file)
@@ -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
index fb7b14fd75148cf9fb34d10375829aeba519493a..57ffcef29ffffa5fe18419ba42d419e0335409dd 100644 (file)
@@ -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 = {
index 82c67358f573b81f89e4d64c3bfda68e3099e59b..57ffcef29ffffa5fe18419ba42d419e0335409dd 100644 (file)
@@ -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 = {
index ff84f1e16310b3f038986e79748766c06e7f4291..d039130b3eb6b3a083daec38e9830da6dccca887 100644 (file)
@@ -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
index 4e5ea719dca6a812c765d58400e30f086d525f3a..d6535d942c1bce56e0f55d55088212a4dd40ec48 100644 (file)
@@ -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 = {
index 13eacfe471296c05229651e7c591086c3f582837..d6535d942c1bce56e0f55d55088212a4dd40ec48 100644 (file)
@@ -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 = {
index 13eacfe471296c05229651e7c591086c3f582837..d6535d942c1bce56e0f55d55088212a4dd40ec48 100644 (file)
@@ -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 = {
index af3a04ba87482797537274c42bd2a9b7ed587d58..c6bc72fff978afca152d4064097b3d86ced77385 100644 (file)
@@ -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.
index de2f75f0153d8b8a1c7eb0a16e88e14cebf3bfaf..fb730830d89a0ec08e1c436ac52379dfa00db7f0 100644 (file)
@@ -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
index 48f1433da623a72fee67396135a97b3d8a367cef..e13c54c7ab8d8b6bc38c806174057097553c61b9 100644 (file)
@@ -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
 
index 8943e5a692073a47a8071c91e06991d418edf266..2871404283cc54b884b2ab63f8b4fccfe12e3895 100755 (executable)
@@ -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
index 490ec6bcd833e83486cf971e09cc617b1820f2d5..e13c54c7ab8d8b6bc38c806174057097553c61b9 100644 (file)
@@ -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
 
index 836965ecedf27507b92c11e0f4ac4664a59660f0..05dd10759510fc5ae387bf7623aefa2b2dfd751b 100644 (file)
@@ -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;
index b2edcb8ccfeb79359d69103c7de0e52829e6160c..05dd10759510fc5ae387bf7623aefa2b2dfd751b 100644 (file)
@@ -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;
index 3327a6276a0037f9761a99d94857849f37dbb48d..5e909d881cfe4d639b1e20bb626bd5ad423c2a12 100644 (file)
@@ -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
 
index 9ee4d3d30ec248317dc8165fd43cc2cb4ff1ec2f..9da830bea3f823f54abc4d703c34f9b62e149997 100644 (file)
@@ -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
index dbbbf9972c4f846a2b2a3f81e0b6897a433d539e..c655e4dfe589a54bded048f73595383e12d40416 100644 (file)
@@ -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;
index 815f3ac1a9b00049ad7d200c55423f707fe3d4f2..c655e4dfe589a54bded048f73595383e12d40416 100644 (file)
@@ -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;
index 0dd0b45ba90dd091cfbb1bfa002236ea43de8bde..592fb67b6d4e78d7601e171498df4e058d645f6b 100644 (file)
@@ -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
index 1975b43f7602081abf9f18bd842ecf412b453aa4..56ff90b0114375587e4f4de94abfd0eb96fa5580 100644 (file)
@@ -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 <ctype.h>
 #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)
index 310da43ed9c49e84aff933b1cab8538eddc47ab8..31f80c0006846185326fc772a2c9644aa4a94f0a 100644 (file)
@@ -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)
index 3be4cdb077f4050c2f2cb3d20ea883fd5a39da41..9eedc365b78640b43fede9f36c0e1d2cd9ceeb82 100644 (file)
@@ -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 <stdlib.h>
 #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.
index d1ccf8389a603681c184f725667bebeb98d152e0..651222c77e980c67d0d717503aa3f972282a1e5d 100644 (file)
@@ -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 *);
index a672b6db4496340b20e3f2dab21390c853901fb3..e05912af05bb835c1748d6b4047cf7ab7bbe2bb7 100644 (file)
@@ -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
index 3cc8d86368750e5c51569dc451f48399977812d4..3a56a18f54e70161e725e52ab466eb6c18f500f3 100644 (file)
@@ -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
index 47f0bed6406d32a783f442284cb812d58a4d4530..31f80c0006846185326fc772a2c9644aa4a94f0a 100644 (file)
@@ -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 3cc8d86368750e5c51569dc451f48399977812d4..3a56a18f54e70161e725e52ab466eb6c18f500f3 100644 (file)
--- 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