[ARM64][MC] Set the default CPU string to generic.

llvm-svn: 206228
This commit is contained in:
Quentin Colombet 2014-04-15 00:28:39 +00:00
parent d9f262098f
commit f9b61e6afd
1 changed files with 1 additions and 3 deletions

View File

@ -44,10 +44,8 @@ static MCSubtargetInfo *createARM64MCSubtargetInfo(StringRef TT, StringRef CPU,
StringRef FS) {
MCSubtargetInfo *X = new MCSubtargetInfo();
// FIXME: Make this darwin-only.
if (CPU.empty())
// We default to Cyclone for now, on Darwin.
CPU = "cyclone";
CPU = "generic";
InitARM64MCSubtargetInfo(X, TT, CPU, FS);
return X;