mie: implement caching and emitting string data

This commit is contained in:
2025-04-17 22:55:17 +01:00
parent abb7cfaf0e
commit 9cce4bf541
11 changed files with 211 additions and 58 deletions

View File

@@ -16,7 +16,7 @@ struct mie_data {
enum mie_data_type d_type;
union {
struct {
struct mie_value *c_value;
struct mie_const *c_value;
} d_const;
struct {
@@ -27,5 +27,6 @@ struct mie_data {
extern struct mie_data *mie_data_create_extern_global(
struct mie_type *type, const char *ident);
extern struct mie_data *mie_data_create_const(struct mie_const *value);
#endif