diff options
author | Jake Ehrlich <jakehehrlich@google.com> | 2017-09-20 18:23:01 +0000 |
---|---|---|
committer | Jake Ehrlich <jakehehrlich@google.com> | 2017-09-20 18:23:01 +0000 |
commit | 1b30d63aeb3a7dec4084cc6d0a2de91a4be7f805 (patch) | |
tree | 0789a9b0c32f0559a3d6a58192be47517757d809 /llvm/lib/Object/ArchiveWriter.cpp | |
parent | 4e040287919c339506d6f795e42b41325fd22171 (diff) | |
download | bcm5719-llvm-1b30d63aeb3a7dec4084cc6d0a2de91a4be7f805.tar.gz bcm5719-llvm-1b30d63aeb3a7dec4084cc6d0a2de91a4be7f805.zip |
Rename K_MIPS64 to K_GNU64
This patch renames K_MIPS64 to K_GNU64 as part of a change to add
support for writing archives with 64-bit indexes in the symbol table.
llvm-svn: 313787
Diffstat (limited to 'llvm/lib/Object/ArchiveWriter.cpp')
-rw-r--r-- | llvm/lib/Object/ArchiveWriter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Object/ArchiveWriter.cpp b/llvm/lib/Object/ArchiveWriter.cpp index 91aa3739229..a6b712c1627 100644 --- a/llvm/lib/Object/ArchiveWriter.cpp +++ b/llvm/lib/Object/ArchiveWriter.cpp @@ -133,7 +133,7 @@ static bool isBSDLike(object::Archive::Kind Kind) { case object::Archive::K_BSD: case object::Archive::K_DARWIN: return true; - case object::Archive::K_MIPS64: + case object::Archive::K_GNU64: case object::Archive::K_DARWIN64: case object::Archive::K_COFF: break; |