summaryrefslogtreecommitdiff
path: root/include/llvm/Object/Archive.h
diff options
context:
space:
mode:
authorDavid Meyer <pdox@google.com>2012-03-09 20:41:57 +0000
committerDavid Meyer <pdox@google.com>2012-03-09 20:41:57 +0000
commit6f9489a86f33624f9ff5388411d12359ce9cef20 (patch)
tree24b05bed8391c0be6059143a5639605ec28f77b0 /include/llvm/Object/Archive.h
parenta8eb6bb408e84ceb468ceb409f4c87308e67b9eb (diff)
downloadllvm-6f9489a86f33624f9ff5388411d12359ce9cef20.tar.gz
llvm-6f9489a86f33624f9ff5388411d12359ce9cef20.tar.bz2
llvm-6f9489a86f33624f9ff5388411d12359ce9cef20.tar.xz
[Object]
Make Binary::TypeID more granular, to distinguish between ELF 32/64 little/big git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@152435 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Object/Archive.h')
-rw-r--r--include/llvm/Object/Archive.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/llvm/Object/Archive.h b/include/llvm/Object/Archive.h
index e6df85679d..358b27a416 100644
--- a/include/llvm/Object/Archive.h
+++ b/include/llvm/Object/Archive.h
@@ -131,7 +131,7 @@ public:
// Cast methods.
static inline bool classof(Archive const *v) { return true; }
static inline bool classof(Binary const *v) {
- return v->getType() == Binary::isArchive;
+ return v->isArchive();
}
private: