Revert r181009.
[oota-llvm.git] / tools / llvm-readobj / llvm-readobj.cpp
index d5eb85429c27c8846098ffabbe04b1a6972baa4f..2e95b6b5518f97032ce07e87dec3b1f8243f2241 100644 (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();
 }