| 1492 | } |
| 1493 | |
| 1494 | bool isNonPtrVector(const Type &t) { |
| 1495 | auto vty = dynamic_cast<const VectorType *>(&t); |
| 1496 | return vty && !vty->getChild(0).isPtrType(); |
| 1497 | } |
| 1498 | |
| 1499 | unsigned minVectorElemSize(const Type &t) { |
| 1500 | if (auto agg = t.getAsAggregateType()) { |
no test coverage detected