Browse Source

* sim-n-core.h (sim_core_read_unaligned_N): illegal empty

initializer.
	* sim-types.h (unsigned128,signed128): fix typo for MSVC.
gdb-4_18-branch
Felix Lee 29 years ago
parent
commit
c7e3f734a7
  1. 6
      sim/common/ChangeLog
  2. 2
      sim/common/sim-n-core.h

6
sim/common/ChangeLog

@ -1,3 +1,9 @@
1997-11-13 Felix Lee <flee@cygnus.com>
* sim-n-core.h (sim_core_read_unaligned_N): illegal empty
initializer.
* sim-types.h (unsigned128,signed128): fix typo for MSVC.
Wed Nov 12 12:18:08 1997 Doug Evans <devans@canuck.cygnus.com>
* aclocal.m4 (SIM_AC_OPTION_SCACHE): Fix typo.

2
sim/common/sim-n-core.h

@ -211,7 +211,7 @@ sim_core_read_unaligned_N(sim_cpu *cpu,
XSTRING (sim_core_read_unaligned_N));
/* to keep some compilers happy, we return a dummy */
{
unsigned_M val[1] = { };
unsigned_M val[1] = { 0 };
return val[0];
}
}

Loading…
Cancel
Save