Remove an unused method on the Program class.
[oota-llvm.git] / lib / Support / Unix / Program.inc
index bd75046aa9af3086f09b8d775c9fe9dd00ee0dab..aac52414f11ab521d2b07c0100b9dd01996fd2ca 100644 (file)
@@ -47,11 +47,6 @@ Program::Program() : Data_(0) {}
 
 Program::~Program() {}
 
-unsigned Program::GetPid() const {
-  uint64_t pid = reinterpret_cast<uint64_t>(Data_);
-  return static_cast<unsigned>(pid);
-}
-
 // This function just uses the PATH environment variable to find the program.
 Path
 Program::FindProgramByName(const std::string& progName) {