[Lldb-commits] [PATCH] D24794: Use Clang for D language support until there is a proper language plugin for it.

Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri Nov 25 03:11:21 PST 2016


This revision was automatically updated to reflect the committed changes.
Closed by commit rL287917: Use Clang for D language support. (authored by jengelen).

Changed prior to commit:
  https://reviews.llvm.org/D24794?vs=72028&id=79288#toc

Repository:
  rL LLVM

https://reviews.llvm.org/D24794

Files:
  lldb/trunk/source/Symbol/ClangASTContext.cpp


Index: lldb/trunk/source/Symbol/ClangASTContext.cpp
===================================================================
--- lldb/trunk/source/Symbol/ClangASTContext.cpp
+++ lldb/trunk/source/Symbol/ClangASTContext.cpp
@@ -113,7 +113,9 @@
          Language::LanguageIsPascal(language) ||
          // Use Clang for Rust until there is a proper language plugin for it
          language == eLanguageTypeRust ||
-         language == eLanguageTypeExtRenderScript;
+         language == eLanguageTypeExtRenderScript ||
+         // Use Clang for D until there is a proper language plugin for it
+         language == eLanguageTypeD;
 }
 }
 


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D24794.79288.patch
Type: text/x-patch
Size: 638 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20161125/8ee937e8/attachment.bin>


More information about the lldb-commits mailing list