Commit 2fdc8d3b authored by Robert Bradshaw's avatar Robert Bradshaw Committed by Robert Bradshaw

Fix specialization for varargs function signatures.

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