Skip to content

Commit

Permalink
Apply clang-tidy fixes for bugprone-macro-parentheses in NVGPUTransfo…
Browse files Browse the repository at this point in the history
…rmOps.cpp (NFC)
  • Loading branch information
joker-eph committed Jan 25, 2024
1 parent 4e71335 commit 70fdaef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mlir/lib/Dialect/NVGPU/TransformOps/NVGPUTransformOps.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ using namespace mlir::transform;
#define DEBUG_TYPE "nvgpu-transforms"
#define DBGS() (llvm::dbgs() << "[" DEBUG_TYPE "]: ")
#define DBGSNL() (llvm::dbgs() << "\n")
#define LDBG(X) LLVM_DEBUG(DBGS() << X << "\n")
#define LDBG(X) LLVM_DEBUG(DBGS() << (X) << "\n")

//===----------------------------------------------------------------------===//
// Apply...ConversionPatternsOp
Expand Down

0 comments on commit 70fdaef

Please sign in to comment.