From 2d84da1b7c4772df9f333fd5df16796ca20bad11 Mon Sep 17 00:00:00 2001 From: Ben Elliston Date: Thu, 16 Nov 2000 03:21:48 +0000 Subject: [PATCH] 2000-11-16 Ben Elliston * cgen-types.h (VOID): New type. --- sim/common/ChangeLog | 4 ++++ sim/common/cgen-types.h | 1 + 2 files changed, 5 insertions(+) diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index a901836414..36e1fbb58e 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,3 +1,7 @@ +2000-11-16 Ben Elliston + + * cgen-types.h (VOID): New type. + 2000-11-09 Ben Elliston * sim-fpu.c (sim_fpu_one): Set exponent to 0. diff --git a/sim/common/cgen-types.h b/sim/common/cgen-types.h index 9848edfb6e..dd85d4ce7e 100644 --- a/sim/common/cgen-types.h +++ b/sim/common/cgen-types.h @@ -64,6 +64,7 @@ typedef enum mode_type { extern const char *mode_names[]; #define MODE_NAME(m) (mode_names[m]) +typedef void VOID; typedef unsigned char BI; typedef signed8 QI; typedef signed16 HI;