Symbol: add missing item in covered switch
authorSaleem Abdulrasool <compnerd@compnerd.org>
Tue, 16 Aug 2016 04:12:36 +0000 (04:12 +0000)
committerSaleem Abdulrasool <compnerd@compnerd.org>
Tue, 16 Aug 2016 04:12:36 +0000 (04:12 +0000)
RenderScript was missing from the covered switch.  Add it to avoid a warning of
the missing entry.  NFC.

llvm-svn: 278774

lldb/source/Symbol/ClangASTContext.cpp

index 9521c3d..f1358c0 100644 (file)
@@ -406,6 +406,7 @@ ParseLangArgs (LangOptions &Opts, InputKind IK, const char* triple)
             case IK_None:
             case IK_AST:
             case IK_LLVM_IR:
+            case IK_RenderScript:
                 assert (!"Invalid input kind!");
             case IK_OpenCL:
                 LangStd = LangStandard::lang_opencl;