Index: sid/component/cgen-cpu/xstormy16/xstormy16.h =================================================================== RCS file: /cvs/src/src/sid/component/cgen-cpu/xstormy16/xstormy16.h,v retrieving revision 1.2 diff -c -p -r1.2 xstormy16.h *** sid/component/cgen-cpu/xstormy16/xstormy16.h 11 Jan 2002 07:25:03 -0000 1.2 --- sid/component/cgen-cpu/xstormy16/xstormy16.h 18 Mar 2004 18:58:20 -0000 *************** *** 1,6 **** // xstormy16.h - Hand-written code for the Sanyo Xstormy16 CPU. -*- C++ -*- ! // Copyright (C) 1999, 2000 Red Hat. // This file is part of SID and is licensed under the GPL. // See the file COPYING.SID for conditions for redistribution. --- 1,6 ---- // xstormy16.h - Hand-written code for the Sanyo Xstormy16 CPU. -*- C++ -*- ! // Copyright (C) 1999, 2000, 2004 Red Hat. // This file is part of SID and is licensed under the GPL. // See the file COPYING.SID for conditions for redistribution. *************** namespace xstormy16 *** 64,73 **** void do_holdx (); // Called by semantic code to perform branches. ! inline void branch (PCADDR new_pc, PCADDR& npc, sem_status& status) { ! npc = new_pc; } // Called by the semantic code at the end of a non-cti insn. --- 64,73 ---- void do_holdx (); // Called by semantic code to perform branches. ! inline PCADDR branch (PCADDR new_pc, PCADDR& npc, sem_status& status) { ! return npc = new_pc; } // Called by the semantic code at the end of a non-cti insn.