elna/gcc/elna-tree.cc

12 lines
224 B
C++
Raw Normal View History

2024-12-29 22:28:53 +01:00
#include "elna/gcc/elna-tree.h"
2025-01-01 23:02:19 +01:00
#include "stor-layout.h"
2024-12-29 22:28:53 +01:00
tree elna_global_trees[ELNA_TI_MAX];
2025-01-01 23:02:19 +01:00
void elna_init_ttree(void)
{
elna_char_type_node = make_unsigned_type(8);
TYPE_STRING_FLAG(elna_char_type_node) = 1;
}