Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
clang-format
  • Loading branch information
goxul committed Apr 11, 2025
commit 7dedb7e5f411aa1f457959fc7196dcaa7947d081
5 changes: 3 additions & 2 deletions clang/lib/CIR/Lowering/ThroughMLIR/LowerCIRToMLIR.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -275,8 +275,9 @@ class CIRStoreOpLowering : public mlir::OpConversionPattern<cir::StoreOp> {
}
};

/// Converts CIR unary math ops (e.g., cir::SinOp) to their MLIR equivalents (e.g., math::SinOp)
/// using a generic template to avoid redundant boilerplate matchAndRewrite definitions.
/// Converts CIR unary math ops (e.g., cir::SinOp) to their MLIR equivalents
/// (e.g., math::SinOp) using a generic template to avoid redundant boilerplate
/// matchAndRewrite definitions.

template <typename CIROp, typename MLIROp>
class CIRUnaryMathOpLowering : public mlir::OpConversionPattern<CIROp> {
Expand Down
Loading