From b1c73532ee8997fe5dfbeb7d223027bdf99758a0 Mon Sep 17 00:00:00 2001 From: Dimitry Andric Date: Sat, 9 Dec 2023 14:28:42 +0100 Subject: Vendor import of llvm-project main llvmorg-18-init-14265-ga17671084db1. --- llvm/lib/TextAPI/TextAPIError.cpp | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 llvm/lib/TextAPI/TextAPIError.cpp (limited to 'llvm/lib/TextAPI/TextAPIError.cpp') diff --git a/llvm/lib/TextAPI/TextAPIError.cpp b/llvm/lib/TextAPI/TextAPIError.cpp new file mode 100644 index 000000000000..23954a9e3466 --- /dev/null +++ b/llvm/lib/TextAPI/TextAPIError.cpp @@ -0,0 +1,39 @@ +//===- TextAPIError.cpp - Tapi Error ----------------------------*- 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 +// +//===----------------------------------------------------------------------===// +/// +/// \file +/// \brief Implements TAPI Error. +/// +//===----------------------------------------------------------------------===// + +#include "llvm/TextAPI/TextAPIError.h" + +using namespace llvm; +using namespace llvm::MachO; + +char TextAPIError::ID = 0; + +void TextAPIError::log(raw_ostream &OS) const { + switch (EC) { + case TextAPIErrorCode::NoSuchArchitecture: + OS << "no such architecture"; + break; + case TextAPIErrorCode::InvalidInputFormat: + OS << "invalid input format"; + break; + default: + llvm_unreachable("unhandled TextAPIErrorCode"); + } + if (!Msg.empty()) + OS << ": " << Msg; + OS << "\n"; +} + +std::error_code TextAPIError::convertToErrorCode() const { + llvm_unreachable("convertToErrorCode is not supported."); +} -- cgit v1.3