Symbol: add missing item in covered switch

RenderScript was missing from the covered switch.  Add it to avoid a warning of
the missing entry.  NFC.

llvm-svn: 278774
This commit is contained in:
Saleem Abdulrasool 2016-08-16 04:12:36 +00:00
parent 937c13d922
commit 5cf8e59763
1 changed files with 1 additions and 0 deletions

View 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;