Modify the assertion in DIBuilder.cpp to cover the DWARF 5 languages
[oota-llvm.git] / lib / IR / DIBuilder.cpp
index 09cf078a2d99425966d1bccca6cb8ab5b4f49ed1..8dd5165eb2970290fcea9c4cbe16795aa21be417 100644 (file)
@@ -104,7 +104,7 @@ DICompileUnit DIBuilder::createCompileUnit(unsigned Lang, StringRef Filename,
                                            StringRef SplitName,
                                            DebugEmissionKind Kind) {
 
-  assert(((Lang <= dwarf::DW_LANG_Python && Lang >= dwarf::DW_LANG_C89) ||
+  assert(((Lang <= dwarf::DW_LANG_OCaml && Lang >= dwarf::DW_LANG_C89) ||
           (Lang <= dwarf::DW_LANG_hi_user && Lang >= dwarf::DW_LANG_lo_user)) &&
          "Invalid Language tag");
   assert(!Filename.empty() &&