Skip to content

Commit f4b77f3

Browse files
committed
Use Clang TypeSystem for OCaml debugging (#1)
1 parent e099523 commit f4b77f3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lldb/source/Plugins/TypeSystem/Clang/TypeSystemClang.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,9 @@ TypeSystemClangSupportsLanguage(lldb::LanguageType language) {
109109
// Use Clang for D until there is a proper language plugin for it
110110
language == eLanguageTypeD ||
111111
// Open Dylan compiler debug info is designed to be Clang-compatible
112-
language == eLanguageTypeDylan;
112+
language == eLanguageTypeDylan ||
113+
// For the moment use the Clang code for OCaml
114+
language == eLanguageTypeOCaml;
113115
}
114116

115117
// Checks whether m1 is an overload of m2 (as opposed to an override). This is

0 commit comments

Comments
 (0)