brintos

brintos / llvm-project-archived public Read only

0
0
Text · 806 B · 75546d6 Raw
27 lines · c
1//===- StandalonePasses.h - Standalone passes  ------------------*- 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-exception6//7//===----------------------------------------------------------------------===//8#ifndef STANDALONE_STANDALONEPASSES_H9#define STANDALONE_STANDALONEPASSES_H10 11#include "Standalone/StandaloneDialect.h"12#include "Standalone/StandaloneOps.h"13#include "mlir/Pass/Pass.h"14#include <memory>15 16namespace mlir {17namespace standalone {18#define GEN_PASS_DECL19#include "Standalone/StandalonePasses.h.inc"20 21#define GEN_PASS_REGISTRATION22#include "Standalone/StandalonePasses.h.inc"23} // namespace standalone24} // namespace mlir25 26#endif27