diff options
author | Felix Lee <flee@cygnus> | 1997-11-13 18:45:21 +0000 |
---|---|---|
committer | Felix Lee <flee@cygnus> | 1997-11-13 18:45:21 +0000 |
commit | c7e3f734a776c379e55d63d056f9e1ff1745f6d4 (patch) | |
tree | 31b13fd701498b28b9058be59edb20514fcd492f | |
parent | 9bb4d38497b8d9be3c1a119bc9044233b44a33ce (diff) | |
download | binutils-c7e3f734a776c379e55d63d056f9e1ff1745f6d4.zip binutils-c7e3f734a776c379e55d63d056f9e1ff1745f6d4.tar.gz binutils-c7e3f734a776c379e55d63d056f9e1ff1745f6d4.tar.bz2 |
* sim-n-core.h (sim_core_read_unaligned_N): illegal empty
initializer.
* sim-types.h (unsigned128,signed128): fix typo for MSVC.
-rw-r--r-- | sim/common/ChangeLog | 6 | ||||
-rw-r--r-- | sim/common/sim-n-core.h | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index 038e829..53f5e89 100644 --- a/sim/common/ChangeLog +++ b/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. diff --git a/sim/common/sim-n-core.h b/sim/common/sim-n-core.h index 2a3cac8..58a7b87 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]; } } |