summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Langford <apl@fb.com>2019-03-06 01:57:04 +0000
committerAlex Langford <apl@fb.com>2019-03-06 01:57:04 +0000
commita4223f9e5f49f25b5924919a429657977eb0e6e2 (patch)
treec9092e4565a47884e743a9917c025709c06752ea
parent2e3e65fb6293e59b31f43cb03250d68c6b58820b (diff)
downloadbcm5719-llvm-a4223f9e5f49f25b5924919a429657977eb0e6e2.tar.gz
bcm5719-llvm-a4223f9e5f49f25b5924919a429657977eb0e6e2.zip
[ExpressionParser] Fix ComputeClangResourceDirectory for windows
The function signature of ComputeClangResourceDirectory for windows wasn't updated when the others changed, causing the windows build to fail. This should fix that. llvm-svn: 355471
-rw-r--r--lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp b/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp
index af9da030fee..b27a7498037 100644
--- a/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp
+++ b/lldb/source/Plugins/ExpressionParser/Clang/ClangHost.cpp
@@ -29,7 +29,10 @@
using namespace lldb_private;
#if defined(_WIN32)
-static bool ComputeClangResourceDirectory(FileSpec &file_spec) { return false; }
+static bool ComputeClangResourceDirectory(FileSpec &lldb_shlib_spec,
+ FileSpec &file_spec, bool verify) {
+ return false;
+}
#else
static bool VerifyClangPath(const llvm::Twine &clang_path) {
if (FileSystem::Instance().IsDirectory(clang_path))
OpenPOWER on IntegriCloud