| 146 | } |
| 147 | |
| 148 | static bool IsMatrix(ILOperand* operand) |
| 149 | { |
| 150 | auto type = operand->Type; |
| 151 | // TODO(tfoley): This needs to be expanded once other matrix types are supported |
| 152 | return type->IsFloatMatrix(); |
| 153 | } |
| 154 | |
| 155 | void CLikeCodeGen::PrintMatrixMulInstrExpr(CodeGenContext & ctx, ILOperand* op0, ILOperand* op1) |
| 156 | { |
no test coverage detected