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 54bfc05d126ca7ebca46fd1af66bb7870319ac7b..cb4dd3ea1fa7df680b8434d6461ae256be96f33a 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 b8dd5aa8cfed7b859ff9ffff1c8f2cf91802f4a9..7afe6fa831d176071981d5c6e7143c448bc5ad7f 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 1b811b645d77d1c23522e5d861a49885a7136050..459e8ed7a2303594fa5a86c16105a51b94375e03 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 df164697224b30ad9e9dd6808ae925e456cbc513..4a0a3b01c8153e157d51978e752a0972d9a1a17d 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::