Commit 336846c5 authored by Stefan Behnel's avatar Stefan Behnel

... and through type casts

parent e0e71d4f
...@@ -3826,6 +3826,9 @@ class TypecastNode(NewTempExprNode): ...@@ -3826,6 +3826,9 @@ class TypecastNode(NewTempExprNode):
def check_const(self): def check_const(self):
self.operand.check_const() self.operand.check_const()
def calculate_constant_result(self):
self.constant_result = self.operand.constant_result
def calculate_result_code(self): def calculate_result_code(self):
opnd = self.operand opnd = self.operand
return self.type.cast_code(opnd.result()) return self.type.cast_code(opnd.result())
......
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