Changeset 941 for trunk/src


Ignore:
Timestamp:
Jan 11, 2004, 1:03:49 AM (22 years ago)
Author:
bird
Message:

Enum last entry comma.

Location:
trunk/src/emx
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/emx/include/a_out.h

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r940 r941  
    2424  M_SPARC = 3,
    2525  /* skip a bunch so we don't run into any of sun's numbers */
    26   M_386 = 100,
     26  M_386 = 100
    2727};
    2828#define N_MAGIC(exec) ((exec).a_info & 0xffff)
     
    121121   whose name is the same as the name of the set.
    122122   This symbol acts like a N_DATA global symbol
    123    in that it can satisfy undefined external references.  */ 
     123   in that it can satisfy undefined external references.  */
    124124
    125125/* These appear as input to LD, in a .o file.  */
  • trunk/src/emx/src/emxomf/weakld.h

    • Property cvs2svn:cvs-rev changed from 1.6 to 1.7
    r940 r941  
    4444    WLDC_CASE_INSENSITIVE = 4,
    4545    /** The linker is link386. */
    46     WLDC_LINKER_LINK386 = 0x1000,
     46    WLDC_LINKER_LINK386 = 0x1000
    4747};
    4848
  • trunk/src/emx/src/ld/symseg.h

    • Property cvs2svn:cvs-rev changed from 1.3 to 1.4
    r940 r941  
    123123  TYPE_CODE_MEMBER,             /* Member type */
    124124  TYPE_CODE_METHOD,             /* Method type */
    125   TYPE_CODE_REF,                /* C++ Reference types */
     125  TYPE_CODE_REF                 /* C++ Reference types */
    126126};
    127127
     
    146146/* Indicates that this type is a virtual baseclass of another class,
    147147   i.e. that if this class is inherited more than once by another
    148    class, only one set of member variables will be included. */ 
     148   class, only one set of member variables will be included. */
    149149#define TYPE_FLAG_VIA_VIRTUAL           2048
    150150
     
    168168     Zero if no such pointer-to type is known yet.
    169169     The debugger may add the address of such a type
    170      if it has to construct one later.  */ 
     170     if it has to construct one later.  */
    171171  struct type *pointer_type;
    172172  /* C++: also need a reference type.  */
    173173  struct type *reference_type;
    174174  struct type **arg_types;
    175  
     175
    176176  /* Type that is a function returning this type.
    177177     Zero if no such function type is known here.
     
    289289     types goes here.
    290290     Unused otherwise.
    291      
     291
    292292     Contrary to all maxims of C style and common sense, the baseclasses
    293293     are indexed from 1 to N_BASECLASSES rather than 0 to N_BASECLASSES-1
     
    393393enum namespace
    394394{
    395   UNDEF_NAMESPACE, VAR_NAMESPACE, STRUCT_NAMESPACE, LABEL_NAMESPACE,
     395  UNDEF_NAMESPACE, VAR_NAMESPACE, STRUCT_NAMESPACE, LABEL_NAMESPACE
    396396};
    397397
     
    464464};
    465465
    466 /* 
     466/*
    467467 * Vectors of all partial symbols read in from file; actually declared
    468468 * and used in dbxread.c.
Note: See TracChangeset for help on using the changeset viewer.