Fixed typo causing tests to fail on non-MSVC machines.

llvm-svn: 163077
This commit is contained in:
Joao Matos 2012-09-01 23:24:10 +00:00
parent 344e9f61de
commit 2898134f15
1 changed files with 1 additions and 1 deletions

View File

@ -350,7 +350,7 @@ std::vector<std::string> clang::driver::GetWindowsSystemIncludeDirs() {
};
for (unsigned i = 0; i < sizeof(FallbackPaths) / sizeof(FallbackPaths[0]); ++i)
Paths.push_back(Paths[i]);
Paths.push_back(FallbackPaths[i]);
return Paths;
}