Rewrite alloc, memref_cast, std.view into allo, std.view by droping memref_cast.
Details
Diff Detail
- Repository
- rG LLVM Github Monorepo
Event Timeline
Unit tests: pass. 61305 tests passed, 0 failed and 736 were skipped.
clang-tidy: fail. Please fix clang-tidy findings.
clang-format: pass.
Build artifacts: diff.json, clang-tidy.txt, clang-format.patch, CMakeCache.txt, console-log.txt, test-results.xml
mlir/lib/Dialect/StandardOps/Ops.cpp | ||
---|---|---|
2538 | Remove trivial braces. | |
2546 | Can you use named accessors for these instead? Also, initializer_list is a temporary so this is likely to break. Use an array instead, or inline this into the 'replace' call below. | |
mlir/test/Transforms/canonicalize.mlir | ||
739 | Don't check SSA names directly, they are not preserved. |
mlir/lib/Dialect/StandardOps/Ops.cpp | ||
---|---|---|
2546 | used ViewOp::operands instead apparently its variadic operands only |
Unit tests: pass. 61305 tests passed, 0 failed and 736 were skipped.
clang-tidy: fail. Please fix clang-tidy findings.
clang-format: pass.
Build artifacts: diff.json, clang-tidy.txt, clang-format.patch, CMakeCache.txt, console-log.txt, test-results.xml
mlir/test/Transforms/canonicalize.mlir | ||
---|---|---|
739 | You didn't fix this. |
mlir/test/Transforms/canonicalize.mlir | ||
---|---|---|
739 | Oh yes changed different line! will send a diff to use ALLOC_MEM instead of %0 everywhere here! |
Remove trivial braces.