Index: src/types.cc |
diff --git a/src/types.cc b/src/types.cc |
index 9cab090695037aff9768a9a6c2de746ddbf050aa..98592cf5c242d3e3c7739a94c8ded31dd2a60288 100644 |
--- a/src/types.cc |
+++ b/src/types.cc |
@@ -648,11 +648,11 @@ void TypeImpl<Config>::TypePrint(FILE* out, PrintDimension dim) { |
} |
} else if (this->IsConstant()) { |
PrintF(out, "Constant(%p : ", static_cast<void*>(*this->AsConstant())); |
- Config::from_bitset(this->LubBitset())->TypePrint(out); |
+ Config::from_bitset(this->LubBitset())->TypePrint(out, dim); |
PrintF(out, ")"); |
} else if (this->IsClass()) { |
PrintF(out, "Class(%p < ", static_cast<void*>(*this->AsClass())); |
- Config::from_bitset(this->LubBitset())->TypePrint(out); |
+ Config::from_bitset(this->LubBitset())->TypePrint(out, dim); |
PrintF(out, ")"); |
} else if (this->IsUnion()) { |
PrintF(out, "("); |