[Driver] Handle the default case missed in r329748.

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

llvm-svn: 329754
This commit is contained in:
Chad Rosier 2018-04-10 20:30:16 +00:00
parent 5e10637a3b
commit d880416722
1 changed files with 2 additions and 0 deletions

View File

@ -316,6 +316,8 @@ void NaClToolChain::addLibCxxIncludePaths(
SmallString<128> P(D.Dir + "/../");
switch (getTriple().getArch()) {
default:
break;
case llvm::Triple::arm:
llvm::sys::path::append(P, "arm-nacl/include/c++/v1");
addSystemInclude(DriverArgs, CC1Args, P.str());