diff options
| author | Adrian <akuegel@google.com> | 2020-01-14 11:41:40 +0100 |
|---|---|---|
| committer | Adrian <akuegel@google.com> | 2020-01-14 11:44:45 +0100 |
| commit | 5a6eae3dea2342c2a83e4502de43927808f8ca21 (patch) | |
| tree | 00cadd54c6b3e7792d748cf620277f2860c23383 /mlir/lib/Dialect/LoopOps | |
| parent | 018b042593f007456b0695421942ec84ec816a30 (diff) | |
| download | bcm5719-llvm-5a6eae3dea2342c2a83e4502de43927808f8ca21.tar.gz bcm5719-llvm-5a6eae3dea2342c2a83e4502de43927808f8ca21.zip | |
[mlir] Ran git-clang-format.
Summary:
I forgot to ran git-clang-format before committing.
Diffstat (limited to 'mlir/lib/Dialect/LoopOps')
| -rw-r--r-- | mlir/lib/Dialect/LoopOps/LoopOps.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mlir/lib/Dialect/LoopOps/LoopOps.cpp b/mlir/lib/Dialect/LoopOps/LoopOps.cpp index 4824421d190..7e3e286b842 100644 --- a/mlir/lib/Dialect/LoopOps/LoopOps.cpp +++ b/mlir/lib/Dialect/LoopOps/LoopOps.cpp @@ -345,8 +345,8 @@ static LogicalResult verify(ReduceOp op) { llvm::any_of(block.getArguments(), [&](const BlockArgument &arg) { return arg.getType() != type; })) - return op.emitOpError() << "expects two arguments to reduce block of type " - << type; + return op.emitOpError() + << "expects two arguments to reduce block of type " << type; // Check that the block is terminated by a ReduceReturnOp. if (!isa<ReduceReturnOp>(block.getTerminator())) |

