Skip to content

Commit a4458c7

Browse files
mshinwellpoechsel
authored andcommitted
Use Clang TypeSystem for OCaml debugging (#1)
1 parent cd70802 commit a4458c7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,9 @@ TypeSystemClangSupportsLanguage(lldb::LanguageType language) {
115115
// Use Clang for D until there is a proper language plugin for it
116116
language == eLanguageTypeD ||
117117
// Open Dylan compiler debug info is designed to be Clang-compatible
118-
language == eLanguageTypeDylan;
118+
language == eLanguageTypeDylan ||
119+
// For the moment use the Clang code for OCaml
120+
language == eLanguageTypeOCaml;
119121
}
120122

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

0 commit comments

Comments
 (0)