From: Eric Christopher Date: Wed, 26 Oct 2011 03:47:16 +0000 (+0000) Subject: Remove unused variable. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b64541fc7285c7305c6df7a83e4514a89bdaaa7b;p=oota-llvm.git Remove unused variable. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@143011 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Object/MachOObjectFile.cpp b/lib/Object/MachOObjectFile.cpp index 9abdc8bdad2..e3a7499bcc0 100644 --- a/lib/Object/MachOObjectFile.cpp +++ b/lib/Object/MachOObjectFile.cpp @@ -793,7 +793,6 @@ error_code MachOObjectFile::getRelocationValueString(DataRefImpl Rel, InMemoryStruct RE; getRelocation(Rel, RE); - bool isPCRel = (RE->Word1 >> 25) & 1; unsigned Type = (RE->Word1 >> 28) & 0xF; std::string fmtbuf;