[Mlir-commits] [mlir] 04dabc2 - [mlir][IR] clang-format OperationSupport.cpp, NFC
Hideto Ueno
llvmlistbot at llvm.org
Wed Jun 28 19:01:19 PDT 2023
Author: Hideto Ueno
Date: 2023-06-28T18:59:55-07:00
New Revision: 04dabc252704a2b211bcfec791bf10d30d1400e8
URL: https://github.com/llvm/llvm-project/commit/04dabc252704a2b211bcfec791bf10d30d1400e8
DIFF: https://github.com/llvm/llvm-project/commit/04dabc252704a2b211bcfec791bf10d30d1400e8.diff
LOG: [mlir][IR] clang-format OperationSupport.cpp, NFC
Follow-up to D154015
Added:
Modified:
mlir/lib/IR/OperationSupport.cpp
Removed:
################################################################################
diff --git a/mlir/lib/IR/OperationSupport.cpp b/mlir/lib/IR/OperationSupport.cpp
index 4c1eeda79ef92..028d3f2639cf0 100644
--- a/mlir/lib/IR/OperationSupport.cpp
+++ b/mlir/lib/IR/OperationSupport.cpp
@@ -657,7 +657,7 @@ llvm::hash_code OperationEquivalence::computeHash(
op->getResultTypes(), op->hashProperties());
// - Location if required
- if(!(flags & Flags::IgnoreLocations))
+ if (!(flags & Flags::IgnoreLocations))
hash = llvm::hash_combine(hash, op->getLoc());
// - Operands
More information about the Mlir-commits
mailing list