diff options
author | Krzysztof Parzyszek <kparzysz@codeaurora.org> | 2016-05-26 15:38:50 +0000 |
---|---|---|
committer | Krzysztof Parzyszek <kparzysz@codeaurora.org> | 2016-05-26 15:38:50 +0000 |
commit | de37cfb5964e7e18334ed77107b39a57c17a5696 (patch) | |
tree | 3f3def775257190351f61cafcae6275d9fa80dd4 /llvm/lib | |
parent | 81bc3170e8cf9c5063499af8e627e8c709966730 (diff) | |
download | bcm5719-llvm-de37cfb5964e7e18334ed77107b39a57c17a5696.tar.gz bcm5719-llvm-de37cfb5964e7e18334ed77107b39a57c17a5696.zip |
[Hexagon] Select the aggressive anti-dependency breaker
llvm-svn: 270857
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/Target/Hexagon/HexagonSubtarget.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Target/Hexagon/HexagonSubtarget.h b/llvm/lib/Target/Hexagon/HexagonSubtarget.h index c7ae139c434..9d5a4a81503 100644 --- a/llvm/lib/Target/Hexagon/HexagonSubtarget.h +++ b/llvm/lib/Target/Hexagon/HexagonSubtarget.h @@ -105,6 +105,8 @@ public: // compiler time and will be removed eventually anyway. bool enableMachineSchedDefaultSched() const override { return false; } + AntiDepBreakMode getAntiDepBreakMode() const override { return ANTIDEP_ALL; } + const std::string &getCPUString () const { return CPUString; } // Threshold for small data section |