File tree Expand file tree Collapse file tree 3 files changed +19
-4
lines changed
llvm/lib/ExecutionEngine/Orc Expand file tree Collapse file tree 3 files changed +19
-4
lines changed Original file line number Diff line number Diff line change @@ -38,10 +38,6 @@ char LookupTask::ID = 0;
38
38
RegisterDependenciesFunction NoDependenciesToRegister =
39
39
RegisterDependenciesFunction ();
40
40
41
- raw_ostream &operator <<(raw_ostream &OS, const SymbolStringPtrBase &Sym) {
42
- return (OS << Sym.S ->first ());
43
- }
44
-
45
41
void MaterializationUnit::anchor () {}
46
42
47
43
ResourceTracker::ResourceTracker (JITDylibSP JD) {
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ add_llvm_component_library(LLVMOrcShared
5
5
OrcError.cpp
6
6
OrcRTBridge.cpp
7
7
SimpleRemoteEPCUtils.cpp
8
+ SymbolStringPool.cpp
8
9
ADDITIONAL_HEADER_DIRS
9
10
${LLVM_MAIN_INCLUDE_DIR} /llvm/ExecutionEngine/Orc
10
11
Original file line number Diff line number Diff line change
1
+ // ===------- SymbolStringPool.cpp - SymbolStringPool implementation -------===//
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
+ #include " llvm/ExecutionEngine/Orc/SymbolStringPool.h"
10
+ #include " llvm/Support/raw_ostream.h"
11
+
12
+ namespace llvm ::orc {
13
+
14
+ raw_ostream &operator <<(raw_ostream &OS, const SymbolStringPtrBase &Sym) {
15
+ return OS << Sym.S ->first ();
16
+ }
17
+
18
+ } // namespace llvm::orc
You can’t perform that action at this time.
0 commit comments