cvs commit: hugs98/src static.c type.c

Alastair Reid reid@glass.cse.ogi.edu
Thu, 3 Oct 2002 04:03:50 -0700


reid        2002/10/03 04:03:50 PDT

  Modified files:
    src                  static.c type.c 
  Log:
  A lint-like pass over Hugs revealed two trivial errors:
  
  The pre-ansi decls for args of typeError were out of order.
  The pre-ansi decls for args of otvarsZonk omitted 3rd arg.
  
  Shouldn't affect generated code at all.
  
  [The 'lint' used was my cross-module inliner which reads in a bunch of
  C files, reorders the definitions, attached the keyword 'inline' where
  it seems appropriate and tries to compile the result (all the while
  trying to preserve type correctness, preserve and reflect sharing of
  global variables, kill dead function definitions, provide control over
  code bloat, etc.).  This tends to catch errors between separate .c
  files.]
  
  Revision  Changes    Path
  1.103     +4 -3      hugs98/src/static.c
  1.55      +3 -3      hugs98/src/type.c