hfinkel added inline comments. ================ Comment at: lib/Driver/Driver.cpp:641 + +static std::string getAbsolutePath(StringRef P) { + if (P.empty()) ---------------- Use llvm::sys::fs::make_absolute instead of this. https://reviews.llvm.org/D24933