Handle the default case

This was omitted in D45422 resulting in a warning.

Differential Revision: https://reviews.llvm.org/D45499

llvm-svn: 329758
This commit is contained in:
Petr Hosek 2018-04-10 21:19:05 +00:00
parent 262589db70
commit d5c9420ff5
1 changed files with 2 additions and 0 deletions

View File

@ -334,6 +334,8 @@ void NaClToolChain::addLibCxxIncludePaths(
llvm::sys::path::append(P, "mipsel-nacl/include/c++/v1");
addSystemInclude(DriverArgs, CC1Args, P.str());
break;
default:
break;
}
}