[Lldb-commits] [PATCH] D54886: Add support for the Dylan language to ClangASTContext
Peter S. Housel via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Nov 26 20:17:27 PST 2018
housel updated this revision to Diff 175385.
housel added a comment.
Adds an inline comment about Open Dylan debug info
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D54886/new/
https://reviews.llvm.org/D54886
Files:
source/Symbol/ClangASTContext.cpp
Index: source/Symbol/ClangASTContext.cpp
===================================================================
--- source/Symbol/ClangASTContext.cpp
+++ source/Symbol/ClangASTContext.cpp
@@ -119,7 +119,9 @@
language == eLanguageTypeRust ||
language == eLanguageTypeExtRenderScript ||
// Use Clang for D until there is a proper language plugin for it
- language == eLanguageTypeD;
+ language == eLanguageTypeD ||
+ // Open Dylan compiler debug info is designed to be Clang-compatible
+ language == eLanguageTypeDylan;
}
// Checks whether m1 is an overload of m2 (as opposed to an override). This is
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D54886.175385.patch
Type: text/x-patch
Size: 662 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20181127/f24641d0/attachment.bin>
More information about the lldb-commits
mailing list