Details
- Reviewers
rriddle ftynse bondhugula
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
| mlir/lib/Transforms/Utils/LoopUtils.cpp | ||
|---|---|---|
| 488 | Use ValueRange instead of ArrayRefs here, it removes the need to create a smallvector below. | |
| mlir/lib/Transforms/Utils/LoopUtils.cpp | ||
|---|---|---|
| 483 | Can this use ValueRange instead of ArrayRef? | |
| 503 | Nit: camelCase please | |
| 504 | lookupOrDefault(terminator->getOperand(..)) will remove the need for if below | |
| 511 | 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?