Changes in src/ResolvExpr/Unify.cc [9d8124f:943bfad]
- File:
-
- 1 edited
-
src/ResolvExpr/Unify.cc (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/Unify.cc
r9d8124f r943bfad 943 943 // check that the other type is compatible and named the same 944 944 auto otherInst = dynamic_cast< const XInstType * >( other ); 945 if (otherInst && inst->name == otherInst->name) this->result = otherInst;945 this->result = otherInst && inst->name == otherInst->name; 946 946 return otherInst; 947 947 }
Note:
See TracChangeset
for help on using the changeset viewer.