diff options
author | Chad Rosier <mcrosier@codeaurora.org> | 2016-02-12 21:27:33 +0000 |
---|---|---|
committer | Chad Rosier <mcrosier@codeaurora.org> | 2016-02-12 21:27:33 +0000 |
commit | 026f15e68706822bf26c133f28dbf43b9c85fc95 (patch) | |
tree | 23a0eca5b2b61fe3c4c4117e0129399892840ae7 /llvm/lib | |
parent | a187ab2aeb4666d799a24b6c9472e6e67d640e1f (diff) | |
download | bcm5719-llvm-026f15e68706822bf26c133f28dbf43b9c85fc95.tar.gz bcm5719-llvm-026f15e68706822bf26c133f28dbf43b9c85fc95.zip |
[AArch64] Enable post-RA MI scheduler for Kryo.
This should have landed in r260686.
llvm-svn: 260739
Diffstat (limited to 'llvm/lib')
-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 5edec429d10..d30542225d0 100644 --- a/llvm/lib/Target/AArch64/AArch64Subtarget.h +++ b/llvm/lib/Target/AArch64/AArch64Subtarget.h @@ -110,7 +110,7 @@ public: const Triple &getTargetTriple() const { return TargetTriple; } bool enableMachineScheduler() const override { return true; } bool enablePostRAScheduler() const override { - return isGeneric() || isCortexA53() || isCortexA57(); + return isGeneric() || isCortexA53() || isCortexA57() || isKryo(); } bool hasV8_1aOps() const { return HasV8_1aOps; } |