aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target/Mips/MipsSubtarget.cpp
diff options
context:
space:
mode:
authorBruno Cardoso Lopes <bruno.cardoso@gmail.com>2008-07-09 05:32:22 +0000
committerBruno Cardoso Lopes <bruno.cardoso@gmail.com>2008-07-09 05:32:22 +0000
commit7728f7e890fd326af6948c52092fc9ea4f38c986 (patch)
tree81e5bcd86dd1ec3197496149894cbe309e5193d8 /lib/Target/Mips/MipsSubtarget.cpp
parentd1f77bf9312e93c62e651a8cdc2cbee68a21f1c1 (diff)
downloadexternal_llvm-7728f7e890fd326af6948c52092fc9ea4f38c986.zip
external_llvm-7728f7e890fd326af6948c52092fc9ea4f38c986.tar.gz
external_llvm-7728f7e890fd326af6948c52092fc9ea4f38c986.tar.bz2
Fixed features usage.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@53277 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MipsSubtarget.cpp')
-rw-r--r--lib/Target/Mips/MipsSubtarget.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/Mips/MipsSubtarget.cpp b/lib/Target/Mips/MipsSubtarget.cpp
index 31e777d..96ff30b 100644
--- a/lib/Target/Mips/MipsSubtarget.cpp
+++ b/lib/Target/Mips/MipsSubtarget.cpp
@@ -20,7 +20,7 @@ using namespace llvm;
MipsSubtarget::MipsSubtarget(const TargetMachine &TM, const Module &M,
const std::string &FS, bool little) :
MipsArchVersion(Mips1), MipsABI(O32), IsLittle(little), IsSingleFloat(false),
- IsFP64bit(false), IsGP64bit(false), HasAllegrexVFPU(false), IsAllegrex(false)
+ IsFP64bit(false), IsGP64bit(false), HasVFPU(false), HasSEInReg(false)
{
std::string CPU = "mips1";
@@ -36,7 +36,7 @@ MipsSubtarget::MipsSubtarget(const TargetMachine &TM, const Module &M,
MipsABI = EABI;
IsSingleFloat = true;
MipsArchVersion = Mips2;
- HasAllegrexVFPU = true; // Enables Allegrex Vector FPU (not supported yet)
- IsAllegrex = true;
+ HasVFPU = true; // Enables Allegrex Vector FPU (not supported yet)
+ HasSEInReg = true;
}
}