This is the mail archive of the cgen@sources.redhat.com mailing list for the CGEN project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: this?


Hi -

graydon wrote:

: ok to commit?

Sure.  (Please zap the double parens in the ChangeLog though.)


: Index: ChangeLog
: ===================================================================
: RCS file: /cvs/cvsfiles/devo/cgen/ChangeLog,v
: retrieving revision 1.725
: diff -r1.725 ChangeLog
: 0a1,6
: > 2001-07-20  graydon hoare  <graydon@redhat.com>
: > 
: > 	* sid-cpu.scm ((gen-write-stack-structure)): Change silent
: > 	failure of write_stack structure over/underflow into assert
: > 	failure.
: > 
: Index: sid-cpu.scm
: ===================================================================
: RCS file: /cvs/cvsfiles/devo/cgen/sid-cpu.scm,v
: retrieving revision 1.37
: diff -r1.37 sid-cpu.scm
: 452,453c452,453
: <     inline void pop   ()             { if (t > -1) t--;}
: <     inline void push  (const ELT &e) { if (t+1 < sz) buf [++t] = e;}
: ---
: >     inline void pop   ()             { assert (t > -1); t--;}
: >     inline void push  (const ELT &e) { assert (t+1 < sz); buf [++t] = e;}

PGP signature


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]