From cd679fda6c193731dcaa85e3322663d52d7b1e3e Mon Sep 17 00:00:00 2001 From: Logan Chien Date: Thu, 4 Oct 2012 08:08:56 +0000 Subject: Fix typo in comments. llvm-svn: 165216 --- clang/lib/Driver/Driver.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'clang/lib/Driver/Driver.cpp') diff --git a/clang/lib/Driver/Driver.cpp b/clang/lib/Driver/Driver.cpp index 1897a63196f..212042eaf36 100644 --- a/clang/lib/Driver/Driver.cpp +++ b/clang/lib/Driver/Driver.cpp @@ -1581,7 +1581,7 @@ const char *Driver::GetNamedOutputPath(Compilation &C, std::string Driver::GetFilePath(const char *Name, const ToolChain &TC) const { // Respect a limited subset of the '-Bprefix' functionality in GCC by - // attempting to use this prefix when lookup up program paths. + // attempting to use this prefix when looking for file paths. for (Driver::prefix_list::const_iterator it = PrefixDirs.begin(), ie = PrefixDirs.end(); it != ie; ++it) { std::string Dir(*it); @@ -1625,7 +1625,7 @@ std::string Driver::GetProgramPath(const char *Name, // FIXME: Needs a better variable than DefaultTargetTriple std::string TargetSpecificExecutable(DefaultTargetTriple + "-" + Name); // Respect a limited subset of the '-Bprefix' functionality in GCC by - // attempting to use this prefix when lokup up program paths. + // attempting to use this prefix when looking for program paths. for (Driver::prefix_list::const_iterator it = PrefixDirs.begin(), ie = PrefixDirs.end(); it != ie; ++it) { llvm::sys::Path P(*it); -- cgit v1.2.3