[clangd] Address FIXME and fix comment
authorKirill Bobyrev <omtcyfz@gmail.com>
Sun, 25 Feb 2018 07:21:16 +0000 (07:21 +0000)
committerKirill Bobyrev <omtcyfz@gmail.com>
Sun, 25 Feb 2018 07:21:16 +0000 (07:21 +0000)
* Address a FIXME by warning the user that both -run-synchronously and -j X are
  passed.
* Fix a comment to suppress clang-tidy warning by passing the correct argument
  name.

Reviewers: ioeric

Subscribers: ilya-biryukov, jkorous-apple, cfe-commits

Differential Revision: https://reviews.llvm.org/D43671

llvm-svn: 326051

clang-tools-extra/clangd/Context.cpp
clang-tools-extra/clangd/tool/ClangdMain.cpp

index 7ecaced..1a9ef24 100644 (file)
@@ -13,7 +13,7 @@
 namespace clang {
 namespace clangd {
 
-Context Context::empty() { return Context(/*Data=*/nullptr); }
+Context Context::empty() { return Context(/*DataPtr=*/nullptr); }
 
 Context::Context(std::shared_ptr<const Data> DataPtr)
     : DataPtr(std::move(DataPtr)) {}
index e35e16f..00d1818 100644 (file)
@@ -149,10 +149,11 @@ int main(int argc, char *argv[]) {
     return 1;
   }
 
-  // Ignore -j option if -run-synchonously is used.
-  // FIXME: a warning should be shown here.
-  if (RunSynchronously)
+  if (RunSynchronously) {
+    if (WorkerThreadsCount.getNumOccurrences())
+      llvm::errs() << "Ignoring -j because -run-synchronously is set.\n";
     WorkerThreadsCount = 0;
+  }
 
   // Validate command line arguments.
   llvm::Optional<llvm::raw_fd_ostream> InputMirrorStream;