llvm/mlir/lib/Dialect/EmitC/Transforms/Transforms.cpp

//===- Transforms.cpp - Patterns and transforms for the EmitC dialect -----===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "mlir/Dialect/EmitC/Transforms/Transforms.h"
#include "mlir/Dialect/EmitC/IR/EmitC.h"
#include "mlir/IR/IRMapping.h"
#include "mlir/IR/PatternMatch.h"
#include "llvm/Support/Debug.h"

namespace mlir {
namespace emitc {

ExpressionOp createExpression(Operation *op, OpBuilder &builder) {}

} // namespace emitc
} // namespace mlir

usingnamespacemlir;
usingnamespacemlir::emitc;

namespace {

struct FoldExpressionOp : public OpRewritePattern<ExpressionOp> {};

} // namespace

void mlir::emitc::populateExpressionPatterns(RewritePatternSet &patterns) {}