diff options
author | John Gilmore <gnu@cygnus> | 1993-02-02 00:45:59 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1993-02-02 00:45:59 +0000 |
commit | a082325bd2660b06c46452bd9894258a55343288 (patch) | |
tree | a1c730446f9f69b8ba62b990d1f2ac7bcb696019 /sim | |
parent | 1fa643be8e6e420bbe85c4afe843cb38c2fc0151 (diff) | |
download | gdb-a082325bd2660b06c46452bd9894258a55343288.zip gdb-a082325bd2660b06c46452bd9894258a55343288.tar.gz gdb-a082325bd2660b06c46452bd9894258a55343288.tar.bz2 |
* Makefile.in: Make SunOS halfdone VPATH work.
* p1.c: Lint picked up by HP native compiler.
Diffstat (limited to 'sim')
-rw-r--r-- | sim/h8300/Makefile.in | 5 | ||||
-rw-r--r-- | sim/h8300/p1.c | 4 |
2 files changed, 4 insertions, 5 deletions
diff --git a/sim/h8300/Makefile.in b/sim/h8300/Makefile.in index 281ca99..abb3f6f 100644 --- a/sim/h8300/Makefile.in +++ b/sim/h8300/Makefile.in @@ -75,9 +75,8 @@ p2.c:writecode writecode:writecode.c $(CC) -o writecode -g $(CSEARCH) $(srcdir)/writecode.c - - - +run.o: run.c +perifs.o: perifs.c #### host and target dependent Makefile fragments come in here. ### diff --git a/sim/h8300/p1.c b/sim/h8300/p1.c index 4297e7b..da139d5 100644 --- a/sim/h8300/p1.c +++ b/sim/h8300/p1.c @@ -51,11 +51,11 @@ littleendian; static void meminit () { - if (!saved_state.mem) + if (saved_state.mem == 0) { int tmp; - saved_state.mem = calloc (1024, 64); + saved_state.mem = (unsigned short *)calloc (1024, 64); littleendian.i = 1; /* initialze the array of pointers to byte registers */ for (tmp = 0; tmp < 8; tmp++) |