Use -> arrow for the return types

This commit is contained in:
2025-02-12 13:32:59 +01:00
parent cd949c4be7
commit f991686330
7 changed files with 60 additions and 46 deletions

View File

@ -50,7 +50,7 @@ namespace gcc
tree lhs_type = TREE_TYPE(lhs);
tree rhs_type = TREE_TYPE(rhs);
return (is_pointer_type(lhs_type) && rhs == null_pointer_node)
return (is_pointer_type(lhs_type) && rhs == elna_pointer_nil_node)
|| (is_pointer_type(lhs_type) && lhs_type == rhs_type);
}