diff options
author | Chad Rosier <mcrosier@codeaurora.org> | 2014-09-08 15:34:16 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@codeaurora.org> | 2014-09-08 15:34:16 +0000 |
commit | bdbca15ccde2f5573acce8400ba6bebe479d0bc5 (patch) | |
tree | ff49fd3ee7706e73d58279e3cac5b640cd249980 | |
parent | 69bfb904194d78c492809e5d5df2cb3b3ee01951 (diff) | |
download | bcm5719-llvm-bdbca15ccde2f5573acce8400ba6bebe479d0bc5.tar.gz bcm5719-llvm-bdbca15ccde2f5573acce8400ba6bebe479d0bc5.zip |
[AArch64] Enabled AA support for Cortex-A57.
llvm-svn: 217381
-rw-r--r-- | llvm/lib/Target/AArch64/AArch64Subtarget.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Target/AArch64/AArch64Subtarget.h b/llvm/lib/Target/AArch64/AArch64Subtarget.h index d8f383b39ff..7474e737195 100644 --- a/llvm/lib/Target/AArch64/AArch64Subtarget.h +++ b/llvm/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. |