home *** CD-ROM | disk | FTP | other *** search
/ Amiga ISO Collection / AmigaUtilCD2.iso / Programming / GCC / GERLIB_DEV08B.LHA / gerlib / libg++ / etc / trie-gen / ChangeLog next >
Encoding:
Text File  |  1993-12-12  |  4.3 KB  |  109 lines

  1. Fri Jun  4 18:42:24 1993  Per Bothner  (bothner@cygnus.com)
  2.  
  3.     * compact.cc, trie.cc:  If 'char' is unsigned, write
  4.     explicit 'signed char' for tables of signed chars.
  5.  
  6. Sun Apr 25 20:04:18 1993  Per Bothner  (bothner@cygnus.com)
  7.  
  8.     Changes (mostly from Peter Schauer) to permit compilation
  9.     using cfront 3.0 and otherwise be ARM-conforming.
  10.     * compact.cc (operator new):  Don't depend on gcc-specific
  11.     pointer arithmetic on (void*).
  12.     * compact.{h,cc}, trie.{h,cc}:  Replace MAX_UNSIGNED_CHAR,
  13.     MAX_UNSIGNED_SHORT, MAX_SIGNED_CHAR, and MAX_SIGNED_SHORT
  14.     by CHAR_MAX, USHRT_MAX,  SCHAR_MAX, and SHRT_MAX from <limits.h>.
  15.     * compact.cc, trie.cc:  Removed _G_OLD_PLACEMENT (old-style
  16.     'new' placement syntax) support.
  17.     * compact.cc:  Remove dependency on gcc-specific >? (max)
  18.     operator.
  19.     * trie.h (Trie::MAX_ASCII):  Replaced by global in trie.cc.
  20.     * compact.h, compat.cc:  Ditto for MAX_ASCII_RANGE.
  21.     * compact.h: Removed MAX_INT.
  22.     * trie.h (Trie::Trie):  Gave default value for parameter,
  23.     allowing us to get rid of the const field DEFAULT_SIZE.
  24.     * main.cc (main):  Renamed variable Trie to trie.
  25.     * test.cc:  Add #include <string.h> (for strlen).
  26.  
  27. Wed Dec 30 16:48:08 1992  Per Bothner  (bothner@rtl.cygnus.com)
  28.  
  29.     * Makefile.in:  Don't pass -1 flag to 'ls' (unless LS_1
  30.     is overridden), as some versions of ls don't support it,
  31.     and those that do don't seem to need it.
  32.     * main.cc:  Use _G_HAVE_SYS_RESOURCE before including
  33.     <sys/resource.h> and doing the rlimit stuff.
  34.  
  35. Mon Dec 21 18:12:31 1992  Per Bothner  (bothner@rtl.cygnus.com)
  36.  
  37.     * compact.cc: Fix to avoid evaluation order dependencies.
  38.  
  39. Mon Nov 30 16:51:33 1992  Per Bothner  (bothner@cygnus.com)
  40.  
  41.     * trie.h (class Trie), compact.h (class Compact_Matrix,
  42.     class Compact_Matrix::Row_Node), compact.cc (new method
  43.     Compact_Matrix::init):  Don't use no-longer-allowed
  44.     initialized non-const fields; use constructors instead.
  45.  
  46. Tue Nov 17 22:00:15 1992  Per Bothner  (bothner@rtl.cygnus.com)
  47.  
  48.     * compact.cc:  ANSIfy:  bcopy->memcpy, bzero->memset,
  49.     * compact.cc (Compact_Matrix::first_fit_decreasing):  Re-write
  50.     dubious memory allocation using alloca to use
  51.     malloc/realloc/free.  This supposedly fixes an HPUX problem.
  52.     * trie.cc (Trie::output):  Fix to avoid const/non-const
  53.     warning when compiling generated output.
  54.  
  55. Sun Nov  1 15:58:19 1992  Per Bothner  (bothner@cygnus.com)
  56.  
  57.     * trie.cc, compact.cc:   Use "new" placement syntax
  58.     (as in 'new (ARGS) TYPE'), unless  _G_OLD_PLACEMENT.
  59.     * compact.cc:  ANSI-fy:  bcopy->memcpy etc.
  60.     * Makefile.in:  Minor fixes related to using $(C++).
  61.  
  62. Sat Mar  7 08:48:53 1992  Michael Tiemann  (tiemann@cygnus.com)
  63.  
  64.     * options.c: Several methods of the class `Options' remained from
  65.     an earlier implementation.  They have now been removed.
  66.  
  67. Sun Mar  1 17:03:43 1992  Per Bothner  (bothner@cygnus.com)
  68.  
  69.     * trie.h (Trie::Trie):  Initialize current_size field.
  70.     * Makefile.in:  Add 'check' rule.
  71.  
  72. Wed Feb 26 18:04:40 1992  K. Richard Pixley  (rich@cygnus.com)
  73.  
  74.     * Makefile.in, configure.in: removed traces of namesubdir,
  75.       -subdirs, $(subdir), $(unsubdir), some rcs triggers.  Forced
  76.       copyrights to '92, changed some from Cygnus to FSF.
  77.  
  78. Sat Feb  1 13:40:04 1992  Per Bothner  (bothner at cygnus.com)
  79.  
  80.     * Rename test.c to test.cc (avoids some problems in
  81.     getting the wrong include files).
  82.  
  83. Fri Feb 23 19:44:10 1990  Doug Schmidt  (schmidt at zola.ics.uci.edu)
  84.  
  85.         * Added the `-h' option to print out a verbose help message.
  86.  
  87.         * Added a check in Trie::output that ensures the program doesn't
  88.           crash if no keywords are given!
  89.           
  90.         * Implemented the -f (generate full trie) option.  This is useful
  91.           to generate another example program for my USENIX C++ paper!
  92.  
  93.         * Removed the member field `compact_output' from class Trie.  
  94.           Changed all uses of this variable to option[COMPACT].  Why
  95.           was it ever done the other way anyhow?!
  96.  
  97.         * Added the `-C' CONST option so that user's can declare strings in 
  98.           the generated lookup table to be readonly.
  99.  
  100. Fri Feb 16 10:47:02 1990  Doug Schmidt  (schmidt at zola.ics.uci.edu)
  101.  
  102.         * Killed some debugging code in compact.cc (operator new).
  103.  
  104. Thu Feb 15 23:20:44 1990  Doug Schmidt  (schmidt at zola.ics.uci.edu)
  105.  
  106.         * Fixed a bunch of incredibly stupid errors.  (I can't believe
  107.           this thing even worked before...).  That's what happens when you
  108.           don't hack for 2 months ;-(
  109.