[Lldb-commits] [PATCH] RenderScript Language Type

Greg Clayton clayborg at gmail.com
Thu Apr 2 13:00:48 PDT 2015


I don't have permissions to view this anymore. Looks good though.

> On Apr 2, 2015, at 12:00 PM, Colin Riley <colin at codeplay.com> wrote:
> 
> Lowercase name.
> 
> 
> REPOSITORY
>  rL LLVM
> 
> http://reviews.llvm.org/D8803
> 
> Files:
>  include/lldb/lldb-enumerations.h
>  source/Target/LanguageRuntime.cpp
> 
> Index: include/lldb/lldb-enumerations.h
> ===================================================================
> --- include/lldb/lldb-enumerations.h
> +++ include/lldb/lldb-enumerations.h
> @@ -397,6 +397,8 @@
>         eLanguageTypeC_plus_plus_14  = 0x0021,   ///< ISO C++:2014.
>         eLanguageTypeFortran03       = 0x0022,   ///< ISO Fortran 2003.
>         eLanguageTypeFortran08       = 0x0023,   ///< ISO Fortran 2008.
> +        // Vendor Extensions
> +        eLanguageTypeExtRenderScript = 0x8e57,   ///< RenderScript
>         eNumLanguageTypes
>     } LanguageType;
> 
> Index: source/Target/LanguageRuntime.cpp
> ===================================================================
> --- source/Target/LanguageRuntime.cpp
> +++ source/Target/LanguageRuntime.cpp
> @@ -340,6 +340,8 @@
>     {   "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 }
> 
> EMAIL PREFERENCES
>  http://reviews.llvm.org/settings/panel/emailpreferences/
> <D8803.23173.patch>




More information about the lldb-commits mailing list