[sim/rx]
[deliverable/binutils-gdb.git] / sim / rx / reg.c
index f635b6dc555b271baf6534c0a84b1218fce17975..0103d212701f586be2663e8ec1c8a602cbae84d8 100644 (file)
@@ -19,6 +19,7 @@
    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
 
 
+#include "config.h"
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -67,6 +68,11 @@ init_regs (void)
 {
   memset (&regs, 0, sizeof (regs));
   memset (&oldregs, 0, sizeof (oldregs));
+
+#ifdef CYCLE_ACCURATE
+  regs.rt = -1;
+  oldregs.rt = -1;
+#endif
 }
 
 static unsigned int
This page took 0.023409 seconds and 4 git commands to generate.