[PATCH] D21500: [AARCH64] Add support for Broadcom Vulcan
    Renato Golin via llvm-commits 
    llvm-commits at lists.llvm.org
       
    Mon Jun 20 03:03:54 PDT 2016
    
    
  
rengolin added inline comments.
================
Comment at: lib/Target/AArch64/AArch64.td:244
@@ -235,2 +243,3 @@
 def : ProcessorModel<"kryo", KryoModel, [ProcKryo]>;
+def : ProcessorModel<"vulcan", NoSchedModel, [ProcVulcan]>;
 
----------------
Isn't it even remotely similar to an A53/A57?
================
Comment at: lib/Target/AArch64/AArch64Subtarget.cpp:74
@@ -73,2 +73,3 @@
     break;
+  case Vulcan: break;
   case CortexA35: break;
----------------
Nit: This could be a fall-through for all remaining cases...
http://reviews.llvm.org/D21500
    
    
More information about the llvm-commits
mailing list