mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-23 22:23:00 +00:00
Replace the use of TargetMachine with a tiny bool variable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@210386 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -80,7 +80,7 @@ X86TargetMachine::X86TargetMachine(const Target &T, StringRef TT, StringRef CPU,
|
||||
Subtarget.getStackAlignment(),
|
||||
Subtarget.is64Bit() ? -8 : -4),
|
||||
DL(computeDataLayout(*getSubtargetImpl())), InstrInfo(*this),
|
||||
TLInfo(*this), TSInfo(DL), JITInfo(*this) {
|
||||
TLInfo(*this), TSInfo(DL), JITInfo(Subtarget.hasSSE1()) {
|
||||
// Determine the PICStyle based on the target selected.
|
||||
if (getRelocationModel() == Reloc::Static) {
|
||||
// Unless we're in PIC or DynamicNoPIC mode, set the PIC style to None.
|
||||
|
||||
Reference in New Issue
Block a user