[lld] r298591 - [ELF] Print two more MIPS targets "supported" by LLD

Simon Atanasyan via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 23 05:17:33 PDT 2017


Author: atanasyan
Date: Thu Mar 23 07:17:32 2017
New Revision: 298591

URL: http://llvm.org/viewvc/llvm-project?rev=298591&view=rev
Log:
[ELF] Print two more MIPS targets "supported" by LLD

These targets are related to MIPS N32 ABI.

Modified:
    lld/trunk/ELF/DriverUtils.cpp

Modified: lld/trunk/ELF/DriverUtils.cpp
URL: http://llvm.org/viewvc/llvm-project/lld/trunk/ELF/DriverUtils.cpp?rev=298591&r1=298590&r2=298591&view=diff
==============================================================================
--- lld/trunk/ELF/DriverUtils.cpp (original)
+++ lld/trunk/ELF/DriverUtils.cpp Thu Mar 23 07:17:32 2017
@@ -129,7 +129,8 @@ void elf::printHelp(const char *Argv0) {
   // Here, we print out all the targets that we support.
   outs() << Argv0 << ": supported targets: "
          << "elf32-i386 elf32-iamcu elf32-littlearm elf32-powerpc "
-         << "elf32-tradbigmips elf32-tradlittlemips elf32-x86-64 "
+         << "elf32-tradbigmips elf32-tradlittlemips "
+         << "elf32-ntradbigmips elf32-ntradlittlemips elf32-x86-64 "
          << "elf64-amdgpu elf64-littleaarch64 elf64-powerpc "
          << "elf64-tradbigmips elf64-tradlittlemips elf64-x86-64\n";
 }




More information about the llvm-commits mailing list