Fix the CXX_INCLUDE_ROOT case that was out of date with ScanLibDirForGCCTriple.

llvm-svn: 141980
diff --git a/clang/lib/Driver/ToolChains.cpp b/clang/lib/Driver/ToolChains.cpp
index 0fa25fb..273f4b4 100644
--- a/clang/lib/Driver/ToolChains.cpp
+++ b/clang/lib/Driver/ToolChains.cpp
@@ -1575,7 +1575,7 @@
       GccInstallPath.append(CXX_INCLUDE_ARCH);
       GccInstallPath.append("/");
       GccInstallPath.append(Version);
-      GccParentLibPath = GccInstallPath + "/../../../..";
+      GccParentLibPath = GccInstallPath + "/../../..";
       IsValid = true;
       return;
     }