diff options
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Object/ArchiveWriter.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/llvm/lib/Object/ArchiveWriter.cpp b/llvm/lib/Object/ArchiveWriter.cpp index 11cd72fa69d..83fbf2f5854 100644 --- a/llvm/lib/Object/ArchiveWriter.cpp +++ b/llvm/lib/Object/ArchiveWriter.cpp @@ -129,9 +129,12 @@ static bool isBSDLike(object::Archive::Kind Kind) { case object::Archive::K_BSD: case object::Archive::K_DARWIN: return true; - default: - llvm_unreachable("not supported for writting"); + case object::Archive::K_MIPS64: + case object::Archive::K_DARWIN64: + case object::Archive::K_COFF: + break; } + llvm_unreachable("not supported for writting"); } static void print32(raw_ostream &Out, object::Archive::Kind Kind, |