OSDN Git Service

Initialize SIM_DESC properly.
authorgreen <green>
Wed, 13 Jan 2010 17:28:26 +0000 (17:28 +0000)
committergreen <green>
Wed, 13 Jan 2010 17:28:26 +0000 (17:28 +0000)
sim/moxie/ChangeLog
sim/moxie/interp.c

index c553855..7a3c0fa 100644 (file)
@@ -1,3 +1,8 @@
+2010-01-13  Anthony Green  <green@moxielogic.com>
+
+       * interp.c (sim_open): Initialize the SIM_DESC object properly
+       with sim_config() and sim_post_argv_init().
+
 2010-01-09  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
 
        * configure: Regenerate.
index 8b8879f..8d280f2 100644 (file)
@@ -1176,6 +1176,22 @@ sim_open (kind, cb, abfd, argv)
   
   set_initial_gprs (); /* Reset the GPR registers.  */
   
+  /* Configure/verify the target byte order and other runtime
+     configuration options */
+  if (sim_config (sd) != SIM_RC_OK)
+    {
+      sim_module_uninstall (sd);
+      return 0;
+    }
+
+  if (sim_post_argv_init (sd) != SIM_RC_OK)
+    {
+      /* Uninstall the modules to avoid memory leaks,
+        file descriptor leaks, etc.  */
+      sim_module_uninstall (sd);
+      return 0;
+    }
+
   return sd;
 }