Now only supports promotion of complex type
| 103 | |
| 104 | // Now only supports promotion of complex type |
| 105 | inline bool NeedPromoteTypes(const proto::VarType::Type& a, |
| 106 | const proto::VarType::Type& b) { |
| 107 | return (IsComplexType(a) || IsComplexType(b)); |
| 108 | } |
| 109 | |
| 110 | int DataTypeNumAlign(const proto::VarType::Type t) { |
| 111 | int cast_type_num = -1; |
no test coverage detected