llvm/llvm/tools/llvm-exegesis/lib/Error.cpp

//===-- Error.cpp -----------------------------------------------*- 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
//
//===----------------------------------------------------------------------===//

#include "Error.h"
#include "llvm/Config/llvm-config.h" // for LLVM_ON_UNIX

#ifdef LLVM_ON_UNIX
#include "llvm/Support/SystemZ/zOSSupport.h"
#include <string.h>
#endif // LLVM_ON_UNIX

namespace llvm {
namespace exegesis {

char ClusteringError::ID;

void ClusteringError::log(raw_ostream &OS) const {}

std::error_code ClusteringError::convertToErrorCode() const {}

char SnippetExecutionFailure::ID;

std::error_code SnippetExecutionFailure::convertToErrorCode() const {}

char SnippetSegmentationFault::ID;

void SnippetSegmentationFault::log(raw_ostream &OS) const {}

char SnippetSignal::ID;

void SnippetSignal::log(raw_ostream &OS) const {}

} // namespace exegesis
} // namespace llvm