[qfcc] Add an is_auto helper function

It's cleaner than type == &type_auto and will allow me to check that
`auto` hasn't been aliased or something like that.
This commit is contained in:
Bill Currie 2025-01-20 12:26:57 +09:00
parent a922088c1c
commit 54231b21ed
2 changed files with 7 additions and 0 deletions

View file

@ -238,6 +238,7 @@ const char *type_get_encoding (const type_t *type);
#define EV_TYPE(t) bool is_##t (const type_t *type) __attribute__((pure));
#include "QF/progs/pr_type_names.h"
bool is_auto (const type_t *type) __attribute__((pure));
bool is_pointer (const type_t *type) __attribute__((pure));
bool is_reference (const type_t *type) __attribute__((pure));
bool is_enum (const type_t *type) __attribute__((pure));

View file

@ -1475,6 +1475,12 @@ bool is_##t (const type_t *type) \
}
#include "QF/progs/pr_type_names.h"
bool
is_auto (const type_t *type)
{
return type == &type_auto;
}
bool
is_pointer (const type_t *type)
{