* sim-events.c (SIM_EVENTS_POLL_RATE): poll more often than once
authorFelix Lee <flee@cygnus>
Tue, 23 Sep 1997 18:08:09 +0000 (18:08 +0000)
committerFelix Lee <flee@cygnus>
Tue, 23 Sep 1997 18:08:09 +0000 (18:08 +0000)
        an hour.
        * sim-n-core.h (WITH_XOR_ENDIAN): MSVC barfs on
        if (0) { 1 % 0; }
        * sim-core.c (sim_core_xor_write_buffer): WITH_XOR_ENDIAN + 1.
        (SIGBUS) define for Windows.
        * sim-trace.c (trace_printf,debug_printf): added ALMOST_STDC.
        * sim-resume.c: define SIGTRAP for windows.
        * sim-xcat.h: use token pasting if ALMOST_STDC.

sim/common/ChangeLog
sim/common/sim-xcat.h

index 4f2bd14a8e0d65906bac4de7ac1f6762088749ca..ad8f146f9774a92043890b8242522638fd4aee12 100644 (file)
@@ -1,3 +1,15 @@
+Tue Sep 23 00:26:39 1997  Felix Lee  <flee@yin.cygnus.com>
+
+       * sim-events.c (SIM_EVENTS_POLL_RATE): poll more often than once
+       an hour.
+       * sim-n-core.h (WITH_XOR_ENDIAN): MSVC barfs on
+       if (0) { 1 % 0; }
+       * sim-core.c (sim_core_xor_write_buffer): WITH_XOR_ENDIAN + 1.
+       (SIGBUS) define for Windows.
+       * sim-trace.c (trace_printf,debug_printf): added ALMOST_STDC.
+       * sim-resume.c: define SIGTRAP for windows.
+       * sim-xcat.h: use token pasting if ALMOST_STDC.
+
 Tue Sep 23 11:04:38 1997  Andrew Cagney  <cagney@b1.cygnus.com>
 
        * Make-common.in (SIM_SCACHE, SIM_DEFAULT_MODEL): Assign
index 7c3dd16f24dd3e8067d47d8f3ca9970a31a58ed3..559a2acfe418a94daecce947cea2f9998796968f 100644 (file)
@@ -24,7 +24,7 @@
 #ifndef _SIM_XCAT_H_
 #define _SIM_XCAT_H_
 
-#ifdef __STDC__
+#if defined __STDC__ || defined ALMOST_STDC
 #define CONCAT2(a,b)    a##b
 #define CONCAT3(a,b,c)  a##b##c
 #define CONCAT4(a,b,c,d) a##b##c##d