aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Object/ArchiveWriter.cpp
diff options
context:
space:
mode:
authorzhijian <zhijian@ca.ibm.com>2022-01-17 11:38:01 -0500
committerzhijian <zhijian@ca.ibm.com>2022-01-17 11:38:01 -0500
commit76f1c396fad8b9281a1c96d266af357da0492344 (patch)
tree23bb20ff6c720714d6c97d4e7ec6677aa79f90cd /llvm/lib/Object/ArchiveWriter.cpp
parent6f0977519d12fc337e8bacd31dbaf84923e49b57 (diff)
downloadllvm-76f1c396fad8b9281a1c96d266af357da0492344.zip
llvm-76f1c396fad8b9281a1c96d266af357da0492344.tar.gz
llvm-76f1c396fad8b9281a1c96d266af357da0492344.tar.bz2
Revert "[AIX] Support of Big archive (read)"
This reverts commit 3130134d6e4823b5ee7619288a4b7e1e60831a82.
Diffstat (limited to 'llvm/lib/Object/ArchiveWriter.cpp')
-rw-r--r--llvm/lib/Object/ArchiveWriter.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/llvm/lib/Object/ArchiveWriter.cpp b/llvm/lib/Object/ArchiveWriter.cpp
index 053b3da..da8bcec 100644
--- a/llvm/lib/Object/ArchiveWriter.cpp
+++ b/llvm/lib/Object/ArchiveWriter.cpp
@@ -137,7 +137,6 @@ static bool isBSDLike(object::Archive::Kind Kind) {
case object::Archive::K_DARWIN:
case object::Archive::K_DARWIN64:
return true;
- case object::Archive::K_AIXBIG:
case object::Archive::K_COFF:
break;
}
@@ -200,7 +199,6 @@ static bool is64BitKind(object::Archive::Kind Kind) {
case object::Archive::K_BSD:
case object::Archive::K_DARWIN:
case object::Archive::K_COFF:
- case object::Archive::K_AIXBIG:
return false;
case object::Archive::K_DARWIN64:
case object::Archive::K_GNU64: