Commit 97881828 authored by Robert Bradshaw's avatar Robert Bradshaw

Fix specialization for varargs function signatures.

parent d810e8b2
...@@ -2644,7 +2644,7 @@ class CFuncType(CType): ...@@ -2644,7 +2644,7 @@ class CFuncType(CType):
result = CFuncType(self.return_type.specialize(values), result = CFuncType(self.return_type.specialize(values),
[arg.specialize(values) for arg in self.args], [arg.specialize(values) for arg in self.args],
has_varargs = 0, has_varargs = self.has_varargs,
exception_value = self.exception_value, exception_value = self.exception_value,
exception_check = self.exception_check, exception_check = self.exception_check,
calling_convention = self.calling_convention, calling_convention = self.calling_convention,
......
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