Untabify and fix whitespace.

llvm-svn: 132531
This commit is contained in:
NAKAMURA Takumi 2011-06-03 03:49:51 +00:00
parent 57d4f972b7
commit 8b73b3e981
1 changed files with 17 additions and 17 deletions

View File

@ -1348,11 +1348,11 @@ static std::string findGCCBaseLibDir(const std::string &GccTriple) {
return ret;
}
static const char* GccVersions[] = {"4.6.0", "4.6",
"4.5.2", "4.5.1", "4.5",
"4.4.5", "4.4.4", "4.4.3", "4.4",
"4.3.4", "4.3.3", "4.3.2", "4.3",
"4.2.4", "4.2.3", "4.2.2", "4.2.1",
"4.2", "4.1.1"};
"4.5.2", "4.5.1", "4.5",
"4.4.5", "4.4.4", "4.4.3", "4.4",
"4.3.4", "4.3.3", "4.3.2", "4.3",
"4.2.4", "4.2.3", "4.2.2", "4.2.1",
"4.2", "4.1.1"};
bool Exists;
for (unsigned i = 0; i < sizeof(GccVersions)/sizeof(char*); ++i) {
std::string Suffix = GccTriple + "/" + GccVersions[i];