mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-04-04 08:25:34 +00:00
[ruamoko] Add qfot_basic_t to qfot_type_t
qfot_basic_t is necessary for getting at the width of basic value types (int, uint, float, long, ulong, double) in order to distinguish between scalars and vectors of those types. I had forgotten this when doing the Ruamoko VM and qfcc changes.
This commit is contained in:
parent
fc7c96d208
commit
35df90cb3f
1 changed files with 6 additions and 0 deletions
|
@ -30,6 +30,11 @@ typedef struct qfot_fldptr_s {
|
|||
struct qfot_type_s *aux_type;
|
||||
} qfot_fldptr_t;
|
||||
|
||||
typedef struct qfot_basic_s {
|
||||
etype_t type;
|
||||
int width;
|
||||
} qfot_basic_t;
|
||||
|
||||
typedef struct qfot_func_s {
|
||||
etype_t type;
|
||||
struct qfot_type_s *return_type;
|
||||
|
@ -61,6 +66,7 @@ typedef struct qfot_type_s {
|
|||
string encoding;
|
||||
union {
|
||||
etype_t type;
|
||||
qfot_basic_t basic;
|
||||
qfot_fldptr_t fldptr;
|
||||
qfot_func_t func;
|
||||
qfot_struct_t strct;
|
||||
|
|
Loading…
Reference in a new issue