1
0
mirror of https://github.com/simh/simh.git synced 2026-03-03 18:16:24 +00:00

alpha: Fix build under GCC

This commit is contained in:
Mark Pizzolato
2018-05-23 15:55:48 -07:00
parent 59067579dd
commit 34b4354666
2 changed files with 1 additions and 5 deletions

View File

@@ -1797,7 +1797,7 @@ t_value sim_val;
extern t_stat fprint_sym (FILE *ofile, t_addr addr, t_value *val,
UNIT *uptr, int32 sw);
static const h_fmt[64] = {
static const int h_fmt[64] = {
0, 0, 0, 0, 0, 0, 0, 0,
H_MRF, H_MRF, H_MRF, H_MRF, H_MRF, H_MRF, H_MRF, H_MRF,
H_IOP, H_IOP, H_IOP, H_IOP, H_FOP, H_FOP, H_FOP, H_FOP,

View File

@@ -36,11 +36,7 @@
#include "sim_defs.h"
#include <setjmp.h>
#if defined (__GNUC__)
#define INLINE inline
#else
#define INLINE
#endif
/* Configuration */