mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-11-29 16:41:27 +00:00
[mlir][Linalg] Make LLVM_DEBUG region bigger to avoid warnings in Release builds
Transforms.cpp:586:16: error: unused variable 'v' [-Werror,-Wunused-variable] for (Value v : operands) ^
This commit is contained in:
parent
19d2c65ddd
commit
6327a7cfd7
@ -581,10 +581,12 @@ static AffineMap substitute(
|
||||
auto map = AffineMap::get(dims.size(), symbols.size(), exprs,
|
||||
exprs.front().getContext());
|
||||
|
||||
LLVM_DEBUG(DBGS() << "Map to simplify: " << map << "\n");
|
||||
LLVM_DEBUG(DBGS() << "Operands:\n");
|
||||
for (Value v : operands)
|
||||
LLVM_DEBUG(DBGS() << v << "\n");
|
||||
LLVM_DEBUG({
|
||||
DBGS() << "Map to simplify: " << map << "\n";
|
||||
DBGS() << "Operands:\n";
|
||||
for (Value v : operands)
|
||||
DBGS() << v << "\n";
|
||||
});
|
||||
|
||||
// Pull in affine.apply operations and compose them fully into the
|
||||
// result.
|
||||
|
Loading…
Reference in New Issue
Block a user