mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-07 12:28:24 +00:00
Reorder initialization list to silence -Wreorder
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@162165 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -43,7 +43,6 @@ MipsTargetMachine(const Target &T, StringRef TT,
|
|||||||
bool isLittle)
|
bool isLittle)
|
||||||
: LLVMTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL),
|
: LLVMTargetMachine(T, TT, CPU, FS, Options, RM, CM, OL),
|
||||||
Subtarget(TT, CPU, FS, isLittle),
|
Subtarget(TT, CPU, FS, isLittle),
|
||||||
ELFWriterInfo(false, isLittle),
|
|
||||||
DataLayout(isLittle ?
|
DataLayout(isLittle ?
|
||||||
(Subtarget.isABI_N64() ?
|
(Subtarget.isABI_N64() ?
|
||||||
"e-p:64:64:64-i8:8:32-i16:16:32-i64:64:64-f128:128:128-n32" :
|
"e-p:64:64:64-i8:8:32-i16:16:32-i64:64:64-f128:128:128-n32" :
|
||||||
@@ -53,7 +52,8 @@ MipsTargetMachine(const Target &T, StringRef TT,
|
|||||||
"E-p:32:32:32-i8:8:32-i16:16:32-i64:64:64-n32")),
|
"E-p:32:32:32-i8:8:32-i16:16:32-i64:64:64-n32")),
|
||||||
InstrInfo(MipsInstrInfo::create(*this)),
|
InstrInfo(MipsInstrInfo::create(*this)),
|
||||||
FrameLowering(MipsFrameLowering::create(*this, Subtarget)),
|
FrameLowering(MipsFrameLowering::create(*this, Subtarget)),
|
||||||
TLInfo(*this), TSInfo(*this), JITInfo() {
|
TLInfo(*this), TSInfo(*this), JITInfo(),
|
||||||
|
ELFWriterInfo(false, isLittle) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void MipsebTargetMachine::anchor() { }
|
void MipsebTargetMachine::anchor() { }
|
||||||
|
Reference in New Issue
Block a user