diff options
| author | Dimitry Andric <dim@FreeBSD.org> | 2017-06-10 19:17:14 +0000 | 
|---|---|---|
| committer | Dimitry Andric <dim@FreeBSD.org> | 2017-06-10 19:17:14 +0000 | 
| commit | db17bf38c59bc172953ed66cfe1b10c03c6bc383 (patch) | |
| tree | 2712281fec99b99c2fcafd5b46439dfdd93261aa /contrib/llvm/lib/Target/Mips/MipsSubtarget.h | |
| parent | 686fb94a00297bf9ff49d93b948925552a2ce8e0 (diff) | |
| parent | 7ab83427af0f77b59941ceba41d509d7d097b065 (diff) | |
Notes
Diffstat (limited to 'contrib/llvm/lib/Target/Mips/MipsSubtarget.h')
| -rw-r--r-- | contrib/llvm/lib/Target/Mips/MipsSubtarget.h | 5 | 
1 files changed, 5 insertions, 0 deletions
diff --git a/contrib/llvm/lib/Target/Mips/MipsSubtarget.h b/contrib/llvm/lib/Target/Mips/MipsSubtarget.h index b4d15ee361ff..625a652a0ca0 100644 --- a/contrib/llvm/lib/Target/Mips/MipsSubtarget.h +++ b/contrib/llvm/lib/Target/Mips/MipsSubtarget.h @@ -144,6 +144,10 @@ class MipsSubtarget : public MipsGenSubtargetInfo {    // HasEVA -- supports EVA ASE.    bool HasEVA; +  +  // nomadd4 - disables generation of 4-operand madd.s, madd.d and +  // related instructions. +  bool DisableMadd4;    InstrItineraryData InstrItins; @@ -253,6 +257,7 @@ public:    bool hasDSPR2() const { return HasDSPR2; }    bool hasDSPR3() const { return HasDSPR3; }    bool hasMSA() const { return HasMSA; } +  bool disableMadd4() const { return DisableMadd4; }    bool hasEVA() const { return HasEVA; }    bool useSmallSection() const { return UseSmallSection; }  | 
