Index: sid/component/cgen-cpu/cgen-model.h =================================================================== RCS file: /cvs/src/src/sid/component/cgen-cpu/cgen-model.h,v retrieving revision 1.2 diff -c -p -r1.2 cgen-model.h *** sid/component/cgen-cpu/cgen-model.h 21 Oct 2003 21:29:31 -0000 1.2 --- sid/component/cgen-cpu/cgen-model.h 11 May 2006 14:43:39 -0000 *************** namespace cgen *** 16,22 **** class cgen_model { public: ! cgen_model (cgen_bi_endian_cpu *c) : cpu (c) {} // To be overridden as needed. Call before each insn is executed. first_p is // true when the insn is the first of a group of parallel insns. --- 16,25 ---- class cgen_model { public: ! cgen_model (cgen_bi_endian_cpu *c) : ! cpu (c), ! vliw_cycles (0) ! {} // To be overridden as needed. Call before each insn is executed. first_p is // true when the insn is the first of a group of parallel insns. *************** public: *** 31,37 **** } // To be overridden as needed. Call after each insn is executed. last_p is ! // true when the insn is the first of a group of parallel insns. cycles is the // number of cycles used by each particular insn. virtual void model_insn_after (bool last_p = true, sid::host_int_4 cycles = 1) { --- 34,40 ---- } // To be overridden as needed. Call after each insn is executed. last_p is ! // true when the insn is the last of a group of parallel insns. cycles is the // number of cycles used by each particular insn. virtual void model_insn_after (bool last_p = true, sid::host_int_4 cycles = 1) {