From c3c0c6df2a83f8a4b4b8361e7050f794bf9afd35 Mon Sep 17 00:00:00 2001 From: Chad Rosier Date: Mon, 8 Sep 2014 15:34:16 +0000 Subject: [PATCH] [AArch64] Enabled AA support for Cortex-A57. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217381 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/AArch64/AArch64Subtarget.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. -- 2.34.1