[Darwin][Driver][clang] apple-none-macho orders the resource directory after internal...
[llvm-project.git] / llvm / lib / ExecutionEngine / Orc / Shared / SymbolStringPool.cpp
blob9ca4e59288ecf4c35d353fb20c392002c1b2b689
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 //===----------------------------------------------------------------------===//
9 #include "llvm/ExecutionEngine/Orc/SymbolStringPool.h"
10 #include "llvm/Support/raw_ostream.h"
12 namespace llvm::orc {
14 raw_ostream &operator<<(raw_ostream &OS, const SymbolStringPtrBase &Sym) {
15 return OS << Sym.S->first();
18 } // namespace llvm::orc