//===- AsmParserState.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 MLIR_ASMPARSER_ASMPARSERSTATE_H #define MLIR_ASMPARSER_ASMPARSERSTATE_H #include "mlir/IR/Attributes.h" #include "mlir/IR/Types.h" #include "llvm/Support/SMLoc.h" #include <cstddef> namespace mlir { class Block; class BlockArgument; class FileLineColLoc; class Operation; class OperationName; class SymbolRefAttr; class Value; /// This class represents state from a parsed MLIR textual format string. It is /// useful for building additional analysis and language utilities on top of /// textual MLIR. This should generally not be used for traditional compilation. class AsmParserState { … }; } // namespace mlir #endif // MLIR_ASMPARSER_ASMPARSERSTATE_H