Adding the RenderScript language type.

Differential Revision: http://reviews.llvm.org/D8803

llvm-svn: 234002
This commit is contained in:
Colin Riley 2015-04-03 09:03:15 +00:00
parent ee3261834e
commit 9e14f61f51
2 changed files with 4 additions and 0 deletions

View File

@ -420,6 +420,8 @@ namespace lldb {
eLanguageTypeC_plus_plus_14 = 0x0021, ///< ISO C++:2014.
eLanguageTypeFortran03 = 0x0022, ///< ISO Fortran 2003.
eLanguageTypeFortran08 = 0x0023, ///< ISO Fortran 2008.
// Vendor Extensions
eLanguageTypeExtRenderScript = 0x8e57, ///< RenderScript
eNumLanguageTypes
};

View File

@ -340,6 +340,8 @@ struct language_name_pair language_names[] =
{ "c++14", eLanguageTypeC_plus_plus_14 },
{ "fortran03", eLanguageTypeFortran03 },
{ "fortran08", eLanguageTypeFortran08 },
// Vendor Extensions
{ "renderscript", eLanguageTypeExtRenderScript},
// Now synonyms, in arbitrary order
{ "objc", eLanguageTypeObjC },
{ "objc++", eLanguageTypeObjC_plus_plus }