summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2011-10-26 03:47:16 +0000
committerEric Christopher <echristo@apple.com>2011-10-26 03:47:16 +0000
commitb64541fc7285c7305c6df7a83e4514a89bdaaa7b (patch)
tree1d4d04c356fdb74f79237ee2bd5ca533069a486e
parent13460c9bd6bf08dfc68cc36e72e02e8198a97eca (diff)
downloadllvm-b64541fc7285c7305c6df7a83e4514a89bdaaa7b.tar.gz
llvm-b64541fc7285c7305c6df7a83e4514a89bdaaa7b.tar.bz2
llvm-b64541fc7285c7305c6df7a83e4514a89bdaaa7b.tar.xz
Remove unused variable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143011 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Object/MachOObjectFile.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Object/MachOObjectFile.cpp b/lib/Object/MachOObjectFile.cpp
index 9abdc8bdad..e3a7499bcc 100644
--- a/lib/Object/MachOObjectFile.cpp
+++ b/lib/Object/MachOObjectFile.cpp
@@ -793,7 +793,6 @@ error_code MachOObjectFile::getRelocationValueString(DataRefImpl Rel,
InMemoryStruct<macho::RelocationEntry> RE;
getRelocation(Rel, RE);
- bool isPCRel = (RE->Word1 >> 25) & 1;
unsigned Type = (RE->Word1 >> 28) & 0xF;
std::string fmtbuf;