[llvm-commits] [llvm] r143011 - /llvm/trunk/lib/Object/MachOObjectFile.cpp
Eric Christopher
echristo at apple.com
Tue Oct 25 20:47:16 PDT 2011
Author: echristo
Date: Tue Oct 25 22:47:16 2011
New Revision: 143011
URL: http://llvm.org/viewvc/llvm-project?rev=143011&view=rev
Log:
Remove unused variable.
Modified:
llvm/trunk/lib/Object/MachOObjectFile.cpp
Modified: llvm/trunk/lib/Object/MachOObjectFile.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Object/MachOObjectFile.cpp?rev=143011&r1=143010&r2=143011&view=diff
==============================================================================
--- llvm/trunk/lib/Object/MachOObjectFile.cpp (original)
+++ llvm/trunk/lib/Object/MachOObjectFile.cpp Tue Oct 25 22:47:16 2011
@@ -793,7 +793,6 @@
InMemoryStruct<macho::RelocationEntry> RE;
getRelocation(Rel, RE);
- bool isPCRel = (RE->Word1 >> 25) & 1;
unsigned Type = (RE->Word1 >> 28) & 0xF;
std::string fmtbuf;
More information about the llvm-commits
mailing list