From: Chad Rosier Date: Mon, 8 Sep 2014 15:34:16 +0000 (+0000) Subject: [AArch64] Enabled AA support for Cortex-A57. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=c3c0c6df2a83f8a4b4b8361e7050f794bf9afd35;p=oota-llvm.git [AArch64] Enabled AA support for Cortex-A57. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217381 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/AArch64/AArch64Subtarget.h b/lib/Target/AArch64/AArch64Subtarget.h index d8f383b39ff..7474e737195 100644 --- a/lib/Target/AArch64/AArch64Subtarget.h +++ b/lib/Target/AArch64/AArch64Subtarget.h @@ -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.