forked from OSchip/llvm-project
21 lines
688 B
C++
21 lines
688 B
C++
//===- StandaloneOps.h - Standalone dialect ops -----------------*- C++ -*-===//
|
|
//
|
|
// This file is licensed 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef STANDALONE_STANDALONEOPS_H
|
|
#define STANDALONE_STANDALONEOPS_H
|
|
|
|
#include "mlir/IR/BuiltinTypes.h"
|
|
#include "mlir/IR/Dialect.h"
|
|
#include "mlir/IR/OpDefinition.h"
|
|
#include "mlir/Interfaces/SideEffectInterfaces.h"
|
|
|
|
#define GET_OP_CLASSES
|
|
#include "Standalone/StandaloneOps.h.inc"
|
|
|
|
#endif // STANDALONE_STANDALONEOPS_H
|