1 //===- StandaloneOps.cpp - Standalone dialect ops ---------------*- C++ -*-===//
2 //
3 // This file is licensed under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #include "Standalone/StandaloneOps.h"
10 #include "Standalone/StandaloneDialect.h"
11 #include "mlir/IR/OpImplementation.h"
12 
13 namespace mlir {
14 namespace standalone {
15 #define GET_OP_CLASSES
16 #include "Standalone/StandaloneOps.cpp.inc"
17 } // namespace standalone
18 } // namespace mlir
19