diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2004-11-09 20:27:23 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2004-11-09 20:27:23 +0000 |
commit | 4b82681c65b6bea328d82cc717a854f34ed808a9 (patch) | |
tree | 999af1f82e38e9d17959f1a2391dad2f324aab5c /lib/System/Win32/Path.cpp | |
parent | 9195f37c5f16ad59f3b4acb27ac3731715dd42c6 (diff) |
Fix isBytecodeFile to correctly recognized compressed bytecode too.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17655 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System/Win32/Path.cpp')
-rw-r--r-- | lib/System/Win32/Path.cpp | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/lib/System/Win32/Path.cpp b/lib/System/Win32/Path.cpp index e22b0354b7..08a3d402e8 100644 --- a/lib/System/Win32/Path.cpp +++ b/lib/System/Win32/Path.cpp @@ -242,10 +242,13 @@ bool Path::hasMagicNumber(const std::string &Magic) const { bool Path::isBytecodeFile() const { - if (readable()) { - return hasMagicNumber("llvm"); - } - return false; + char buffer[ 4]; + buffer[0] = 0; + std::ifstream f(path.c_str()); + f.read(buffer, 4); + if (f.bad()) + ThrowErrno("can't read file signature"); + return 0 == memcmp(buffer,"llvc",4) || 0 == memcmp(buffer,"llvm",4); } bool |