System/Path: Add x86-64 COFF to IdentifyFileType.

llvm-svn: 114037
diff --git a/llvm/lib/System/Path.cpp b/llvm/lib/System/Path.cpp
index 0026fd2..ae166a57 100644
--- a/llvm/lib/System/Path.cpp
+++ b/llvm/lib/System/Path.cpp
@@ -127,6 +127,10 @@
       if (magic[1] == 0x02)
         return COFF_FileType;
       break;
+    case 0x64: // x86-64 Windows.
+      if (magic[1] == char(0x86))
+        return COFF_FileType;
+      break;
 
     default:
       break;