diff options
author | Eric Christopher <echristo@apple.com> | 2011-10-26 03:47:16 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-10-26 03:47:16 +0000 |
commit | ff37313f12f2d1a9a3d8faafccd73662fe9f51e4 (patch) | |
tree | 2acc227d19c956085c923def81e2dc6e6bfecb87 /llvm/lib/Object/MachOObjectFile.cpp | |
parent | 55561e942b9289bafc2707e0e771d2ad91d84d04 (diff) | |
download | bcm5719-llvm-ff37313f12f2d1a9a3d8faafccd73662fe9f51e4.tar.gz bcm5719-llvm-ff37313f12f2d1a9a3d8faafccd73662fe9f51e4.zip |
Remove unused variable.
llvm-svn: 143011
Diffstat (limited to 'llvm/lib/Object/MachOObjectFile.cpp')
-rw-r--r-- | llvm/lib/Object/MachOObjectFile.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/llvm/lib/Object/MachOObjectFile.cpp b/llvm/lib/Object/MachOObjectFile.cpp index 9abdc8bdad2..e3a7499bcc0 100644 --- a/llvm/lib/Object/MachOObjectFile.cpp +++ b/llvm/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; |