MLIR 22.0.0git
LogicalResult.h
Go to the documentation of this file.
1//===- LogicalResult.h - Stub aliasing to llvm/LogicalResult ----*- C++ -*-===//
2//
3// Part of the LLVM Project, 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#ifndef MLIR_SUPPORT_LOGICALRESULT_H
10#define MLIR_SUPPORT_LOGICALRESULT_H
11
12#include "llvm/Support/LogicalResult.h"
13
14// TODO: This header is a stop-gap to avoid breaking downstream, and is to be
15// removed eventually.
16namespace mlir {
17using llvm::failed;
18using llvm::failure;
19using llvm::FailureOr;
20using llvm::LogicalResult;
21using llvm::ParseResult;
22using llvm::succeeded;
23using llvm::success;
24} // namespace mlir
25
26#endif // MLIR_SUPPORT_LOGICALRESULT_H
Include the generated interface declarations.