Commit 0ebf976f authored by Stefan Behnel's avatar Stefan Behnel

removed unused function

parent 62410bbe
...@@ -1856,19 +1856,6 @@ def c_ptr_type(base_type): ...@@ -1856,19 +1856,6 @@ def c_ptr_type(base_type):
else: else:
return CPtrType(base_type) return CPtrType(base_type)
def Node_to_type(node, env):
from ExprNodes import NameNode, AttributeNode, StringNode, error
if isinstance(node, StringNode):
node = NameNode(node.pos, name=node.value)
if isinstance(node, NameNode) and node.name in rank_to_type_name:
return simple_c_type(1, 0, node.name)
elif isinstance(node, (AttributeNode, NameNode)):
node.analyze_types(env)
if not node.entry.is_type:
pass
else:
error(node.pos, "Bad type")
def same_type(type1, type2): def same_type(type1, type2):
return type1.same_as(type2) return type1.same_as(type2)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment