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

initializer.
	* sim-types.h (unsigned128,signed128): fix typo for MSVC.
This commit is contained in:
Felix Lee 1997-11-13 18:45:21 +00:00
parent 9bb4d38497
commit c7e3f734a7
2 changed files with 7 additions and 1 deletions

View File

@ -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.

View File

@ -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];
}
}