diff options
author | Rafael Espindola <rafael.espindola@gmail.com> | 2013-07-30 20:02:18 +0000 |
---|---|---|
committer | Rafael Espindola <rafael.espindola@gmail.com> | 2013-07-30 20:02:18 +0000 |
commit | ed0a016e80ba3b56d676d665e067dc2fe7f474f7 (patch) | |
tree | f2f3fbe7c84248b3cfde094705c09d25a6b60117 /lib/Support/Windows/Path.inc | |
parent | c0173e6f9f0de4497cd9b52b4f2269a57846f2ac (diff) | |
download | external_llvm-ed0a016e80ba3b56d676d665e067dc2fe7f474f7.zip external_llvm-ed0a016e80ba3b56d676d665e067dc2fe7f474f7.tar.gz external_llvm-ed0a016e80ba3b56d676d665e067dc2fe7f474f7.tar.bz2 |
Remove dead code.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187439 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Windows/Path.inc')
-rw-r--r-- | lib/Support/Windows/Path.inc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/Support/Windows/Path.inc b/lib/Support/Windows/Path.inc index 7cb95c4..a0724e5 100644 --- a/lib/Support/Windows/Path.inc +++ b/lib/Support/Windows/Path.inc @@ -657,9 +657,6 @@ error_code status(const Twine &path, file_status &result) { 0)); if (!h) return getStatus(INVALID_HANDLE_VALUE, result); - BY_HANDLE_FILE_INFORMATION Info; - if (!::GetFileInformationByHandle(h, &Info)) - return getStatus(INVALID_HANDLE_VALUE, result); return getStatus(h, result); } |