From: Felix Lee Date: Thu, 13 Nov 1997 18:45:21 +0000 (+0000) Subject: * sim-n-core.h (sim_core_read_unaligned_N): illegal empty X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=c7e3f734a776c379e55d63d056f9e1ff1745f6d4;p=deliverable%2Fbinutils-gdb.git * sim-n-core.h (sim_core_read_unaligned_N): illegal empty initializer. * sim-types.h (unsigned128,signed128): fix typo for MSVC. --- diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 038e82917b..53f5e8998a 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,9 @@ +1997-11-13 Felix Lee + + * 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 * aclocal.m4 (SIM_AC_OPTION_SCACHE): Fix typo. diff --git a/sim/common/sim-n-core.h b/sim/common/sim-n-core.h index 2a3cac8362..58a7b87484 100644 --- a/sim/common/sim-n-core.h +++ b/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]; } }