diff options
| author | Quentin Colombet <qcolombet@apple.com> | 2014-04-15 19:08:46 +0000 |
|---|---|---|
| committer | Quentin Colombet <qcolombet@apple.com> | 2014-04-15 19:08:46 +0000 |
| commit | 72dad56c53c89d0225c17985bb859fb8b0cd1daf (patch) | |
| tree | ec1549d6c7490eebf6a32681fceceee6b03bd69c /llvm/lib/Target/ARM64 | |
| parent | b035f6d878de47a0408df71911da2bb5bdcb79de (diff) | |
| download | bcm5719-llvm-72dad56c53c89d0225c17985bb859fb8b0cd1daf.tar.gz bcm5719-llvm-72dad56c53c89d0225c17985bb859fb8b0cd1daf.zip | |
[ARM64] Set default CPU to generic instead of cyclone.
llvm-svn: 206313
Diffstat (limited to 'llvm/lib/Target/ARM64')
| -rw-r--r-- | llvm/lib/Target/ARM64/ARM64Subtarget.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/llvm/lib/Target/ARM64/ARM64Subtarget.cpp b/llvm/lib/Target/ARM64/ARM64Subtarget.cpp index 30c1264098a..3312e8e93ab 100644 --- a/llvm/lib/Target/ARM64/ARM64Subtarget.cpp +++ b/llvm/lib/Target/ARM64/ARM64Subtarget.cpp @@ -32,10 +32,8 @@ ARM64Subtarget::ARM64Subtarget(const std::string &TT, const std::string &CPU, CPUString(CPU), TargetTriple(TT) { // Determine default and user-specified characteristics - // FIXME: Make this darwin-only. if (CPUString.empty()) - // We default to Cyclone for now, on Darwin. - CPUString = "cyclone"; + CPUString = "generic"; ParseSubtargetFeatures(CPUString, FS); } |

