Ignore:
Timestamp:
Apr 27, 2004, 8:39:34 PM (22 years ago)
Author:
bird
Message:

GCC v3.3.3 sources.

Location:
branches/GNU/src/gcc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/GNU/src/gcc

    • Property svn:ignore
      •  

        old new  
        2626configure.vr
        2727configure.vrs
         28
        2829Makefile
        29 dir.info
        3030lost+found
        3131update.out
  • branches/GNU/src/gcc/libjava/java/io/ObjectStreamConstants.java

    • Property cvs2svn:cvs-rev changed from 1.1 to 1.1.1.2
    r1390 r1391  
    5555  final static short STREAM_VERSION = 5;
    5656
    57   final static byte TC_NULL = (byte)112;
    58   final static byte TC_REFERENCE = (byte)113;
    59   final static byte TC_CLASSDESC = (byte)114;
    60   final static byte TC_OBJECT = (byte)115;
    61   final static byte TC_STRING = (byte)116;
    62   final static byte TC_ARRAY = (byte)117;
    63   final static byte TC_CLASS = (byte)118;
    64   final static byte TC_BLOCKDATA = (byte)119;
    65   final static byte TC_ENDBLOCKDATA = (byte)120;
    66   final static byte TC_RESET = (byte)121;
    67   final static byte TC_BLOCKDATALONG = (byte)122;
    68   final static byte TC_EXCEPTION = (byte)123;
     57  final static byte TC_NULL = (byte)112;            //0x70
     58  final static byte TC_REFERENCE = (byte)113;       //0x71
     59  final static byte TC_CLASSDESC = (byte)114;       //0x72
     60  final static byte TC_OBJECT = (byte)115;          //0x73
     61  final static byte TC_STRING = (byte)116;          //0x74
     62  final static byte TC_ARRAY = (byte)117;           //0x75
     63  final static byte TC_CLASS = (byte)118;           //0x76
     64  final static byte TC_BLOCKDATA = (byte)119;       //0x77
     65  final static byte TC_ENDBLOCKDATA = (byte)120;    //0x78
     66  final static byte TC_RESET = (byte)121;           //0x79
     67  final static byte TC_BLOCKDATALONG = (byte)122;   //0x7A
     68  final static byte TC_EXCEPTION = (byte)123;       //0x7B
     69  final static byte TC_LONGSTRING = (byte)124;      //0x7C
     70  final static byte TC_PROXYCLASSDESC = (byte)125;  //0x7D
    6971
    7072  final static byte TC_BASE = TC_NULL;
    71   final static byte TC_MAX = TC_EXCEPTION;
     73  final static byte TC_MAX = TC_;
    7274
    7375  final static int baseWireHandle = 0x7e0000;
Note: See TracChangeset for help on using the changeset viewer.