summaryrefslogtreecommitdiff
path: root/lib/Target/Mips/MipsSubtarget.h
diff options
context:
space:
mode:
authorAkira Hatanaka <ahatanaka@mips.com>2013-03-05 23:22:30 +0000
committerAkira Hatanaka <ahatanaka@mips.com>2013-03-05 23:22:30 +0000
commit5ffd24c49f6d78c166ee357424bf4e20f61af6bc (patch)
tree68535d6a62f24bcfcc1cbedfb2a2628be13a48b0 /lib/Target/Mips/MipsSubtarget.h
parent1e3e869899468de2210f9777905340d907c814c6 (diff)
downloadllvm-5ffd24c49f6d78c166ee357424bf4e20f61af6bc.tar.gz
llvm-5ffd24c49f6d78c166ee357424bf4e20f61af6bc.tar.bz2
llvm-5ffd24c49f6d78c166ee357424bf4e20f61af6bc.tar.xz
[mips] Remove android calling convention.
This calling convention was added just to handle functions which return vector of floats. The fix committed in r165585 solves the problem. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176530 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Mips/MipsSubtarget.h')
-rw-r--r--lib/Target/Mips/MipsSubtarget.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/Target/Mips/MipsSubtarget.h b/lib/Target/Mips/MipsSubtarget.h
index 32baa3d85a..7a2e47ce5a 100644
--- a/lib/Target/Mips/MipsSubtarget.h
+++ b/lib/Target/Mips/MipsSubtarget.h
@@ -95,9 +95,6 @@ protected:
// HasDSP, HasDSPR2 -- supports DSP ASE.
bool HasDSP, HasDSPR2;
- // IsAndroid -- target is android
- bool IsAndroid;
-
InstrItineraryData InstrItins;
// The instance to the register info section object
@@ -144,7 +141,6 @@ public:
bool inMicroMipsMode() const { return InMicroMipsMode; }
bool hasDSP() const { return HasDSP; }
bool hasDSPR2() const { return HasDSPR2; }
- bool isAndroid() const { return IsAndroid; }
bool isLinux() const { return IsLinux; }
bool useSmallSection() const { return UseSmallSection; }