//===- Pass.h ---------------------------------------------------*- C++ -*-===// // // 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 // //===----------------------------------------------------------------------===// #ifndef LLVM_SANDBOXIR_PASS_H #define LLVM_SANDBOXIR_PASS_H #include "llvm/Support/ErrorHandling.h" #include "llvm/Support/raw_ostream.h" namespace llvm::sandboxir { class Function; /// The base class of a Sandbox IR Pass. class Pass { … }; /// A pass that runs on a sandbox::Function. class FunctionPass : public Pass { … }; } // namespace llvm::sandboxir #endif // LLVM_SANDBOXIR_PASS_H