blob: 51ce41bf00bf5c738b73d984163452232ce25a0c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
//===-- 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"
namespace llvm {
namespace exegesis {
char ClusteringError::ID;
void ClusteringError::log(raw_ostream &OS) const { OS << Msg; }
std::error_code ClusteringError::convertToErrorCode() const {
return inconvertibleErrorCode();
}
char SnippetCrash::ID;
void SnippetCrash::log(raw_ostream &OS) const { OS << Msg; }
std::error_code SnippetCrash::convertToErrorCode() const {
return inconvertibleErrorCode();
}
} // namespace exegesis
} // namespace llvm
|