mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-16 12:24:03 +00:00
Added new features to represent specific instructions groups
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54213 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -29,8 +29,9 @@ cl::opt<unsigned> SSThreshold("mips-ssection-threshold", cl::Hidden,
|
||||
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), HasVFPU(false), HasSEInReg(false),
|
||||
HasABICall(true), HasAbsoluteCall(false), IsLinux(true)
|
||||
IsFP64bit(false), IsGP64bit(false), HasVFPU(false), HasABICall(true),
|
||||
HasAbsoluteCall(false), IsLinux(true), HasSEInReg(false), HasCondMov(false),
|
||||
HasMulDivAdd(false), HasMinMax(false), HasSwap(false), HasBitCount(false)
|
||||
{
|
||||
std::string CPU = "mips1";
|
||||
|
||||
|
Reference in New Issue
Block a user