Fix typo, WITH_TARGET_WORD_BITSIZE not WITH_TARGET_BITSIZE.
authorAndrew Cagney <cagney@redhat.com>
Thu, 2 Oct 1997 23:37:30 +0000 (23:37 +0000)
committerAndrew Cagney <cagney@redhat.com>
Thu, 2 Oct 1997 23:37:30 +0000 (23:37 +0000)
sim/common/ChangeLog
sim/ppc/ChangeLog
sim/ppc/sim_calls.c
sim/testsuite/v850eq-elf/Makefile.in
sim/tic80/ChangeLog
sim/tic80/configure.in

index 0e8d54f5903d2633c547309d6dae82c479f875dd..32c103af725af54760f3b1ea3bc65b7ffd23150b 100644 (file)
@@ -1,3 +1,21 @@
+Fri Oct  3 09:28:00 1997  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * configure: Regenerated to track ../common/aclocal.m4 changes.
+
+Thu Oct  2 19:43:52 1997  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * aclocal.m4 (sim-bitsize): Fix typo, WITH_TARGET_WORD_BITSIZE not
+       WITH_TARGET_BITSIZE.
+
+Thu Sep 25 23:20:20 1997  Felix Lee  <flee@yin.cygnus.com>
+
+        * sim-profile.c (profile_print_core): label needs empty statement.
+
+Thu Sep 25 11:20:47 1997  Stu Grossman  <grossman@babylon-5.cygnus.com>
+
+       * sim-break.c (sim_set_breakpoint sim_clear_breakpoint):  Use ZALLOC
+       and zfree instead of xmalloc and free.  Prevents warnings.
+
 Wed Sep 24 17:38:57 1997  Andrew Cagney  <cagney@b1.cygnus.com>
 
        * configure: Regenerated to track ../common/aclocal.m4 changes.
index 75821bf65e22df11db9cf4bd5883c5bed003bc02..00b5c7908edcea1a703f8664b776a221d9f40cba 100644 (file)
@@ -1,3 +1,20 @@
+Mon Sep 29 10:05:01 1997  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * sim_calls.c (zfree): Use free, not mfree.
+       (sim_io_flush_stdoutput): Replace gdb_flush with callback ->
+       flush_stdout.
+
+Fri Sep 26 09:50:29 1997  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * ppc-instructions:
+       (ldhau): From Johannes Reisinger, update rA after load.
+
+Tue Sep  9 22:13:23 1997  Felix Lee  <flee@cygnus.com>
+
+       * basics.h (CONCAT*): token-pasting macros, if ALMOST_STDC,
+       for MSVC.
+       * words.h: __int64 instead of long long for MSVC.
+
 Wed Aug 27 10:24:15 1997  Andrew Cagney  <cagney@b1.cygnus.com>
 
        * sim_calls.c (sim_create_inferior): Check the simulator was
index 7b6c4d477dbc1f1b88cb071d98a34c881adfe7ea..4d73291c05dbd34292956d3620bf5ff0f432cd7e 100644 (file)
@@ -200,6 +200,10 @@ sim_create_inferior (SIM_DESC sd,
   unsigned_word entry_point;
   TRACE(trace_gdb, ("sim_create_inferior(start_address=0x%x, ...)\n",
                    entry_point));
+
+  if (simulator == NULL)
+    error ("No program loaded");
+
   if (abfd != NULL)
     entry_point = bfd_get_start_address (abfd);
   else
@@ -369,7 +373,7 @@ sim_io_flush_stdoutput(void)
 {
   switch (CURRENT_STDIO) {
   case DO_USE_STDIO:
-    gdb_flush (gdb_stdout);
+    callbacks->flush_stdout (callbacks);
     break;
   case DONT_USE_STDIO:
     break;
@@ -393,5 +397,5 @@ zalloc(long size)
 
 void zfree(void *data)
 {
-  mfree(NULL, data);
+  free(NULL, data);
 }
index 7c91e576c6505a599064e98881785903be7446a5..1cb5c95d9461e72b30a9096de6dc669aed468dea 100644 (file)
@@ -59,15 +59,15 @@ RUNTEST_FOR_TARGET = `\
 
 
 AS_FOR_TARGET = `\
-  if [ -x ../../../gas/as.new ]; then \
-    echo ../../../gas/as.new ; \
+  if [ -x ../../../gas/as-new ]; then \
+    echo ../../../gas/as-new ; \
   else \
     echo $(target_alias)-as ; \
   fi`
 
 LD_FOR_TARGET = `\
-  if [ -x ../../../ld/ld.new ]; then \
-    echo ../../../ld/ld.new ; \
+  if [ -x ../../../ld/ld-new ]; then \
+    echo ../../../ld/ld-new ; \
   else \
     echo $(target_alias)-ld ; \
   fi`
index bfb89a494de6603c32aafb84dde5d33696f68482..77655dd0ebceabd1e234cbc3ec066ff88f05b146 100644 (file)
@@ -1,3 +1,8 @@
+Fri Oct  3 09:28:00 1997  Andrew Cagney  <cagney@b1.cygnus.com>
+
+       * configure.in (SIM_AC_OPTIONS_BITSIZE): Define.
+       * configure: Regenerated to track ../common/aclocal.m4 changes.
+
 Wed Sep 24 17:38:57 1997  Andrew Cagney  <cagney@b1.cygnus.com>
 
        * configure: Regenerated to track ../common/aclocal.m4 changes.
index a747b1705a30a63958af6cfe7ff27696ff9697d7..730b62e6cfd910f934e2ea148b79ac5c15211a0f 100644 (file)
@@ -12,6 +12,7 @@ SIM_AC_OPTION_ALIGNMENT(FORCED_ALIGNMENT)
 SIM_AC_OPTION_HOSTENDIAN
 SIM_AC_OPTION_WARNINGS
 SIM_AC_OPTION_RESERVED_BITS(1)
+SIM_AC_OPTION_BITSIZE(32,31)
 
 dnl For UNIX emulation
 AC_CHECK_HEADERS(stdlib.h unistd.h string.h strings.h)