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