[llvm] r217381 - [AArch64] Enabled AA support for Cortex-A57.

Chad Rosier mcrosier at codeaurora.org
Mon Sep 8 08:34:16 PDT 2014


Author: mcrosier
Date: Mon Sep  8 10:34:16 2014
New Revision: 217381

URL: http://llvm.org/viewvc/llvm-project?rev=217381&view=rev
Log:
[AArch64] Enabled AA support for Cortex-A57.

Modified:
    llvm/trunk/lib/Target/AArch64/AArch64Subtarget.h

Modified: llvm/trunk/lib/Target/AArch64/AArch64Subtarget.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/AArch64/AArch64Subtarget.h?rev=217381&r1=217380&r2=217381&view=diff
==============================================================================
--- llvm/trunk/lib/Target/AArch64/AArch64Subtarget.h (original)
+++ llvm/trunk/lib/Target/AArch64/AArch64Subtarget.h Mon Sep  8 10:34:16 2014
@@ -111,7 +111,7 @@ public:
   bool isCortexA57() const { return CPUString == "cortex-a57"; }
   bool isCortexA53() const { return CPUString == "cortex-a53"; }
 
-  bool useAA() const override { return isCortexA53(); }
+  bool useAA() const override { return isCortexA53() || isCortexA57(); }
 
   /// getMaxInlineSizeThreshold - Returns the maximum memset / memcpy size
   /// that still makes it profitable to inline the call.





More information about the llvm-commits mailing list