diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-12-31 23:38:28 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-12-31 23:38:28 +0000 |
commit | db8842f9f351297c3f666bc5f88f5ee80e39fb70 (patch) | |
tree | 1f6aa32d9b55c8692cb3f20d6107b299d88c3c0b /llvm/lib/Support/Windows | |
parent | acd64becb15c5105fae0875575d14858fb106cb1 (diff) | |
download | bcm5719-llvm-db8842f9f351297c3f666bc5f88f5ee80e39fb70.tar.gz bcm5719-llvm-db8842f9f351297c3f666bc5f88f5ee80e39fb70.zip |
Remove an unused method on the Program class.
llvm-svn: 171332
Diffstat (limited to 'llvm/lib/Support/Windows')
-rw-r--r-- | llvm/lib/Support/Windows/Program.inc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/lib/Support/Windows/Program.inc b/llvm/lib/Support/Windows/Program.inc index b54608093b1..dc214b82c07 100644 --- a/llvm/lib/Support/Windows/Program.inc +++ b/llvm/lib/Support/Windows/Program.inc @@ -43,11 +43,6 @@ Program::~Program() { } } -unsigned Program::GetPid() const { - Win32ProcessInfo* wpi = reinterpret_cast<Win32ProcessInfo*>(Data_); - return wpi->dwProcessId; -} - // This function just uses the PATH environment variable to find the program. Path Program::FindProgramByName(const std::string& progName) { |