dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnet/image synthetic.c, 1.11, 1.12 writer.c,


From: Richard Baumann <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnet/image synthetic.c, 1.11, 1.12 writer.c, 1.12, 1.13
Date: Sun, 20 Jul 2003 00:59:12 -0400

Update of /cvsroot/dotgnu-pnet/pnet/image
In directory subversions:/tmp/cvs-serv16434/image

Modified Files:
        synthetic.c writer.c 
Log Message:
Implement most of the remaining lib_emit icalls.


Index: synthetic.c
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/image/synthetic.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** synthetic.c 28 Feb 2003 04:57:47 -0000      1.11
--- synthetic.c 20 Jul 2003 04:59:09 -0000      1.12
***************
*** 552,555 ****
--- 552,560 ----
  }
  
+ unsigned long ILTypeHash(ILType *type)
+ {
+       return HashType(0, type);
+ }
+ 
  #ifdef        __cplusplus
  };

Index: writer.c
===================================================================
RCS file: /cvsroot/dotgnu-pnet/pnet/image/writer.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -r1.12 -r1.13
*** writer.c    15 May 2003 04:51:47 -0000      1.12
--- writer.c    20 Jul 2003 04:59:10 -0000      1.13
***************
*** 161,164 ****
--- 161,179 ----
  }
  
+ void ILWriterSetStream(ILWriter *writer, FILE *stream, int seekable)
+ {
+       if (!(writer->stream))
+       {
+               writer->stream = stream;
+               writer->seekable = seekable;
+       }
+ }
+ 
+ void ILWriterResetTypeAndFlags(ILWriter *writer, int type, int flags)
+ {
+       writer->type = type;
+       writer->flags = flags;
+ }
+ 
  /*
   * Write the contents of a buffer list to the ".text" section.





reply via email to

[Prev in Thread] Current Thread [Next in Thread]