From ed0a016e80ba3b56d676d665e067dc2fe7f474f7 Mon Sep 17 00:00:00 2001 From: Rafael Espindola Date: Tue, 30 Jul 2013 20:02:18 +0000 Subject: [PATCH] Remove dead code. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@187439 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Support/Windows/Path.inc | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/Support/Windows/Path.inc b/lib/Support/Windows/Path.inc index 7cb95c4e36b..a0724e55513 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); }