Home | History | Annotate | Download | only in Driver

Lines Matching refs:pwd

1691 /// If the PWD environment variable is set, add a CC1 option to specify the
1694 if (const char *pwd = ::getenv("PWD")) {
1695 // GCC also verifies that stat(pwd) and stat(".") have the same inode
1697 if (llvm::sys::path::is_absolute(pwd)) {
1698 std::string CompDir = pwd;
2342 if (const char *pwd = ::getenv("PWD")) {
2343 if (llvm::sys::path::is_absolute(pwd)) {
2344 SmallString<128> Pwd(pwd);
2345 llvm::sys::path::append(Pwd, CoverageFilename.str());
2346 CoverageFilename.swap(Pwd);