Details
- Reviewers
rriddle ftynse bondhugula
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
| mlir/lib/Transforms/Utils/LoopUtils.cpp | ||
|---|---|---|
| 485 | Use ValueRange instead of ArrayRefs here, it removes the need to create a smallvector below. | |
| mlir/lib/Transforms/Utils/LoopUtils.cpp | ||
|---|---|---|
| 481–482 | Can this use ValueRange instead of ArrayRef? | |
| 510 | Nit: camelCase please | |
| 511 | lookupOrDefault(terminator->getOperand(..)) will remove the need for if below | |
| 518 | Can we just bail out of transformation in this case, instead of producing incorrect code? | |
| mlir/test/Dialect/SCF/loop-unroll.mlir | ||
| 273 | Let's not pattern-match SSA value names | |
Can this use ValueRange instead of ArrayRef?