Revert r181009.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@181079 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Amara Emerson
2013-05-03 23:57:17 +00:00
parent 2bb955a693
commit 1aef163a68
10 changed files with 140 additions and 606 deletions

View File

@ -128,10 +128,6 @@ namespace opts {
// -expand-relocs
cl::opt<bool> ExpandRelocs("expand-relocs",
cl::desc("Expand each shown relocation to multiple lines"));
// -arm-buildattrs
cl::opt<bool> ArmBuildAttrs("arm-buildattrs",
cl::desc("Display ARM ELF build attributes"));
} // namespace opts
namespace llvm {
@ -225,8 +221,6 @@ static void dumpObject(const ObjectFile *Obj) {
Dumper->printNeededLibraries();
if (opts::ProgramHeaders)
Dumper->printProgramHeaders();
if (opts::ArmBuildAttrs)
Dumper->printARMBuildAttributes();
}