diff options
Diffstat (limited to 'tools/llvm-ar/llvm-ar.cpp')
-rw-r--r-- | tools/llvm-ar/llvm-ar.cpp | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/tools/llvm-ar/llvm-ar.cpp b/tools/llvm-ar/llvm-ar.cpp index 1a4d75f46d..0707fd66e7 100644 --- a/tools/llvm-ar/llvm-ar.cpp +++ b/tools/llvm-ar/llvm-ar.cpp @@ -339,8 +339,8 @@ void doPrint() { const char* data = reinterpret_cast<const char*>(I->getData()); // Skip things that don't make sense to print - if (I->isLLVMSymbolTable() || I->isForeignSymbolTable() || - (!DontSkipBytecode && + if (I->isLLVMSymbolTable() || I->isSVR4SymbolTable() || + I->isBSD4SymbolTable() || (!DontSkipBytecode && (I->isBytecode() || I->isCompressedBytecode()))) continue; @@ -396,10 +396,6 @@ void doDisplayTable() { std::cout << "b"; else if (I->isCompressedBytecode()) std::cout << "B"; - else if (I->isForeignSymbolTable()) - std::cout << "s"; - else if (I->isLLVMSymbolTable()) - std::cout << "S"; else if (I->isCompressed()) std::cout << "Z"; else |