mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-30 04:35:00 +00:00
[PowerPC] Remove TargetMachine CPU auto-detection
As was done for X86 in r206094. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@233684 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
369ee1b1f4
commit
3e915977af
@ -21,7 +21,6 @@
|
||||
#include "llvm/IR/Function.h"
|
||||
#include "llvm/IR/GlobalValue.h"
|
||||
#include "llvm/Support/CommandLine.h"
|
||||
#include "llvm/Support/Host.h"
|
||||
#include "llvm/Support/TargetRegistry.h"
|
||||
#include "llvm/Target/TargetMachine.h"
|
||||
#include <cstdlib>
|
||||
@ -110,11 +109,6 @@ void PPCSubtarget::initSubtargetFeatures(StringRef CPU, StringRef FS) {
|
||||
else
|
||||
CPUName = "generic";
|
||||
}
|
||||
#if (defined(__APPLE__) || defined(__linux__)) && \
|
||||
(defined(__ppc__) || defined(__powerpc__))
|
||||
if (CPUName == "generic")
|
||||
CPUName = sys::getHostCPUName();
|
||||
#endif
|
||||
|
||||
// Initialize scheduling itinerary for the specified CPU.
|
||||
InstrItins = getInstrItineraryForCPU(CPUName);
|
||||
|
Loading…
x
Reference in New Issue
Block a user