aboutsummaryrefslogtreecommitdiff
path: root/llvm/tools/llvm-dwp/llvm-dwp.cpp
diff options
context:
space:
mode:
authorAlexander Yermolovich <ayermolo@fb.com>2021-07-22 14:11:49 -0700
committerAlexander Yermolovich <ayermolo@fb.com>2021-07-22 14:23:29 -0700
commitf8c6515554cc4a8f878179e2e081946c8c519fe3 (patch)
tree52b6ef246db858c7e02cd0a7a6372fdf19035259 /llvm/tools/llvm-dwp/llvm-dwp.cpp
parent7de73da8dad3ee6c5bca676b679bcdab84050ea2 (diff)
downloadllvm-f8c6515554cc4a8f878179e2e081946c8c519fe3.zip
llvm-f8c6515554cc4a8f878179e2e081946c8c519fe3.tar.gz
llvm-f8c6515554cc4a8f878179e2e081946c8c519fe3.tar.bz2
[DWP] Refactoring llvm-dwp in to a library part 2
This is follow up to https://reviews.llvm.org/D106198 where llvm-dwp was refactored in to multiple files. In this patch moving them in to lib/include directories. Reviewed By: dblaikie Differential Revision: https://reviews.llvm.org/D106493
Diffstat (limited to 'llvm/tools/llvm-dwp/llvm-dwp.cpp')
-rw-r--r--llvm/tools/llvm-dwp/llvm-dwp.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/tools/llvm-dwp/llvm-dwp.cpp b/llvm/tools/llvm-dwp/llvm-dwp.cpp
index 5d70d91..1f58372 100644
--- a/llvm/tools/llvm-dwp/llvm-dwp.cpp
+++ b/llvm/tools/llvm-dwp/llvm-dwp.cpp
@@ -10,9 +10,9 @@
// package files).
//
//===----------------------------------------------------------------------===//
-#include "DWP.h"
-#include "DWPError.h"
-#include "DWPStringPool.h"
+#include "llvm/DWP/DWP.h"
+#include "llvm/DWP/DWPError.h"
+#include "llvm/DWP/DWPStringPool.h"
#include "llvm/MC/MCAsmBackend.h"
#include "llvm/MC/MCAsmInfo.h"
#include "llvm/MC/MCCodeEmitter.h"