aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp
diff options
context:
space:
mode:
authorSnehasish Kumar <snehasishk@google.com>2021-12-29 15:46:22 -0800
committerSnehasish Kumar <snehasishk@google.com>2022-02-03 14:33:49 -0800
commit3c34ef403671f637b46ef8807ad98120c7fc0098 (patch)
tree13a51dc0a509b1e6557f0433aa67f9b96ab524d1 /llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp
parent9a61e731ff4c2b7e19438efa277b8712d4431b04 (diff)
downloadllvm-3c34ef403671f637b46ef8807ad98120c7fc0098.zip
llvm-3c34ef403671f637b46ef8807ad98120c7fc0098.tar.gz
llvm-3c34ef403671f637b46ef8807ad98120c7fc0098.tar.bz2
[DebugInfo] Move the SymbolizableObjectFile header to include/llvm.
This change moves the SymbolizableObjectFile header to include/llvm/DebugInfo/Symbolize. Making this header available to other llvm libraries simplifies use cases where implicit caching, multiple platform support and other features of the Symbolizer class are not required. This also makes the dependent libraries easier to unit test by having mocks which derive from SymbolizableModule. Differential Revision: https://reviews.llvm.org/D116781
Diffstat (limited to 'llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp')
-rw-r--r--llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp b/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp
index a9c7883..fcff531 100644
--- a/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp
+++ b/llvm/lib/DebugInfo/Symbolize/SymbolizableObjectFile.cpp
@@ -10,7 +10,7 @@
//
//===----------------------------------------------------------------------===//
-#include "SymbolizableObjectFile.h"
+#include "llvm/DebugInfo/Symbolize/SymbolizableObjectFile.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/ADT/Triple.h"
#include "llvm/BinaryFormat/COFF.h"