projects
/
oota-llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1147248
)
MipsArchVersion does not need to be in the initialization list and MipsABI
author
Akira Hatanaka
<ahatanak@gmail.com>
Wed, 21 Sep 2011 16:41:43 +0000
(16:41 +0000)
committer
Akira Hatanaka
<ahatanak@gmail.com>
Wed, 21 Sep 2011 16:41:43 +0000
(16:41 +0000)
should be initialized to UnknownABI.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140254
91177308
-0d34-0410-b5e6-
96231b3b80d8
lib/Target/Mips/MipsSubtarget.cpp
patch
|
blob
|
history
diff --git
a/lib/Target/Mips/MipsSubtarget.cpp
b/lib/Target/Mips/MipsSubtarget.cpp
index 5c8823eb3f2fc20e4ba35448e9d177be983cf288..c3b771872aeeec1ecce0f68b6fb61f2c5b13e015 100644
(file)
--- a/
lib/Target/Mips/MipsSubtarget.cpp
+++ b/
lib/Target/Mips/MipsSubtarget.cpp
@@
-24,7
+24,7
@@
using namespace llvm;
MipsSubtarget::MipsSubtarget(const std::string &TT, const std::string &CPU,
const std::string &FS, bool little) :
MipsGenSubtargetInfo(TT, CPU, FS),
- MipsA
rchVersion(Mips32), MipsABI(O32
), IsLittle(little), IsSingleFloat(false),
+ MipsA
BI(UnknownABI
), IsLittle(little), IsSingleFloat(false),
IsFP64bit(false), IsGP64bit(false), HasVFPU(false), IsLinux(true),
HasSEInReg(false), HasCondMov(false), HasMulDivAdd(false), HasMinMax(false),
HasSwap(false), HasBitCount(false)