mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-03-06 01:19:28 +00:00
mark some targets as experimental. Andrew, if you think that Alpha is
basically working, feel free to remove the tag. The other targets have really basic things that break them. llvm-svn: 57628
This commit is contained in:
parent
232c7929a2
commit
122c9b1b22
@ -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);
|
||||
|
@ -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> *
|
||||
|
@ -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);
|
||||
|
@ -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::
|
||||
|
Loading…
x
Reference in New Issue
Block a user