End while and if statements with the end token
This commit is contained in:
@ -34,12 +34,6 @@ namespace gcc
|
||||
return TREE_CODE(type) == ARRAY_TYPE;
|
||||
}
|
||||
|
||||
bool is_record_type(tree type)
|
||||
{
|
||||
gcc_assert(TYPE_P(type));
|
||||
return TREE_CODE(type) == RECORD_TYPE;
|
||||
}
|
||||
|
||||
tree tree_chain_base::head()
|
||||
{
|
||||
return first;
|
||||
@ -79,5 +73,10 @@ namespace gcc
|
||||
{
|
||||
return m_block;
|
||||
}
|
||||
|
||||
std::shared_ptr<elna::source::symbol_table<tree>> builtin_symbol_table()
|
||||
{
|
||||
return std::make_shared<elna::source::symbol_table<tree>>();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user