Changed LS/PS, ported to DEC VAX

This commit is contained in:
ceriel
1990-12-19 11:17:06 +00:00
parent 9943c03f53
commit fc040b4e21
7 changed files with 72 additions and 48 deletions

View File

@@ -7,7 +7,6 @@
#include "idf.h"
#include "type.h"
#include "sizes.h"
#include "symbol.h"
#include "scope.h"
#include "langdep.h"
@@ -19,14 +18,14 @@ p_type void_type;
p_type float_type, double_type;
p_type string_type, address_type;
long int_size = SZ_INT,
long int_size = sizeof(int),
char_size = 1,
short_size = SZ_SHORT,
long_size = SZ_LONG,
pointer_size = SZ_POINTER;
short_size = sizeof(short),
long_size = sizeof(long),
pointer_size = sizeof(char *);
long float_size = SZ_FLOAT,
double_size = SZ_DOUBLE;
long float_size = sizeof(float),
double_size = sizeof(double);
struct bounds {
long low, high;