diff options
author | Chad Rosier <mcrosier@apple.com> | 2011-11-02 23:21:55 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@apple.com> | 2011-11-02 23:21:55 +0000 |
commit | eefb0de6dc383faa2d95536ac5e9deb71958d953 (patch) | |
tree | aff1b36e455a98d2b59d4b637a830cccd8d6aed5 /lib/Object | |
parent | 9c674bb012c23622bd31d5e82cb0baeda9aac3a5 (diff) |
Removed unused variable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143591 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Object')
-rw-r--r-- | lib/Object/Archive.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Object/Archive.cpp b/lib/Object/Archive.cpp index 968ddcdcff..a1bd8b6c92 100644 --- a/lib/Object/Archive.cpp +++ b/lib/Object/Archive.cpp @@ -223,7 +223,6 @@ error_code Archive::Symbol::getMember(child_iterator &Result) const { uint32_t member_count = *reinterpret_cast<const support::ulittle32_t*>(buf); const char *offsets = buf + 4; buf += 4 + (member_count * 4); // Skip offsets. - uint32_t symbol_count = *reinterpret_cast<const support::ulittle32_t*>(buf); const char *indicies = buf + 4; uint16_t offsetindex = |