summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/passes/SignatureRefining.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/passes/SignatureRefining.cpp b/src/passes/SignatureRefining.cpp
index 376c74442..de669dbb2 100644
--- a/src/passes/SignatureRefining.cpp
+++ b/src/passes/SignatureRefining.cpp
@@ -147,6 +147,12 @@ struct SignatureRefining : public Pass {
for (auto& [type, info] : allInfo) {
if (!subTypes.getStrictSubTypes(type).empty()) {
info.canModify = false;
+ } else if (type.getSuperType()) {
+ // Also avoid modifying types with supertypes, as we do not handle
+ // contravariance here. That is, when we refine parameters we look for
+ // a more refined type, but the type must be *less* refined than the
+ // param type for the parent (or equal) TODO
+ info.canModify = false;
}
}