OSDN Git Service

mark some targets as experimental. Andrew, if you think that Alpha is
authorChris Lattner <sabre@nondot.org>
Thu, 16 Oct 2008 06:16:50 +0000 (06:16 +0000)
committerChris Lattner <sabre@nondot.org>
Thu, 16 Oct 2008 06:16:50 +0000 (06:16 +0000)
basically working, feel free to remove the tag.  The other targets have
really basic things that break them.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@57628 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/Alpha/AlphaTargetMachine.cpp
lib/Target/CellSPU/SPUTargetMachine.cpp
lib/Target/IA64/IA64TargetMachine.cpp
lib/Target/PIC16/PIC16TargetMachine.cpp

index 54bfc05..cb4dd3e 100644 (file)
@@ -22,7 +22,7 @@
 using namespace llvm;
 
 // Register the targets
-static RegisterTarget<AlphaTargetMachine> X("alpha", "Alpha (incomplete)");
+static RegisterTarget<AlphaTargetMachine> X("alpha", "Alpha [experimental]");
 
 const TargetAsmInfo *AlphaTargetMachine::createTargetAsmInfo() const {
   return new AlphaTargetAsmInfo(*this);
index b8dd5aa..7afe6fa 100644 (file)
@@ -24,7 +24,7 @@ using namespace llvm;
 namespace {
   // Register the targets
   RegisterTarget<SPUTargetMachine>
-  CELLSPU("cellspu", "STI CBEA Cell SPU");
+  CELLSPU("cellspu", "STI CBEA Cell SPU [experimental]");
 }
 
 const std::pair<unsigned, int> *
index 1b811b6..459e8ed 100644 (file)
@@ -26,7 +26,8 @@ using namespace llvm;
 extern "C" int IA64TargetMachineModule;
 int IA64TargetMachineModule = 0;
 
-static RegisterTarget<IA64TargetMachine> X("ia64", "IA-64 (Itanium)");
+static RegisterTarget<IA64TargetMachine> X("ia64", 
+                                           "IA-64 (Itanium) [experimental]");
 
 const TargetAsmInfo *IA64TargetMachine::createTargetAsmInfo() const {
   return new IA64TargetAsmInfo(*this);
index df16469..4a0a3b0 100644 (file)
@@ -23,7 +23,7 @@ using namespace llvm;
 
 namespace {
   // Register the targets
-  RegisterTarget<PIC16TargetMachine> X("pic16", "PIC16 14-bit");
+  RegisterTarget<PIC16TargetMachine> X("pic16", "PIC16 14-bit [experimental]");
 }
 
 PIC16TargetMachine::