forked from OSchip/llvm-project
Match raw "psp" triple target, as done by the homebrew toolchain.
llvm-svn: 54514
This commit is contained in:
parent
6231e7e4ec
commit
70e41caf17
|
@ -50,7 +50,8 @@ MipsSubtarget::MipsSubtarget(const TargetMachine &TM, const Module &M,
|
|||
// a allegrex target, set the features. We also match
|
||||
// big and little endian allegrex cores (dont really
|
||||
// know if a big one exists)
|
||||
if (TT.find("mipsallegrex") != std::string::npos) {
|
||||
if (TT.find("mipsallegrex") != std::string::npos ||
|
||||
TT.find("psp") != std::string::npos) {
|
||||
MipsABI = EABI;
|
||||
IsSingleFloat = true;
|
||||
MipsArchVersion = Mips2;
|
||||
|
|
Loading…
Reference in New Issue