mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-05 01:31:05 +00:00
Enable gp optimizations by default when available, even when a target triple
is available, since the target triple doesn't specify whether to use gpopts or not. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22685 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7f9b4e9044
commit
ba25365140
@ -43,6 +43,9 @@ PPCSubtarget::PPCSubtarget(const Module &M)
|
||||
const std::string& TT = M.getTargetTriple();
|
||||
if (TT.length() > 5) {
|
||||
isDarwin = TT.find("darwin") != std::string::npos;
|
||||
#if defined(__APPLE__)
|
||||
isGigaProcessor = IsGP();
|
||||
#endif
|
||||
} else if (TT.empty()) {
|
||||
#if defined(_POWER)
|
||||
isAIX = true;
|
||||
|
Loading…
x
Reference in New Issue
Block a user