diff options
author | Nicolas Geoffray <ngeoffray@google.com> | 2021-09-13 14:07:10 +0100 |
---|---|---|
committer | Nicolas Geoffray <ngeoffray@google.com> | 2021-09-14 08:03:38 +0000 |
commit | a5f978ceb39619b96633d95fd4430f26d8e402b7 (patch) | |
tree | abe5abcf9bfb9b2aa7f68f400760bd72c0c25e89 /compiler | |
parent | 9c70cdb384578e5c37b828cf4f629c929d743d1f (diff) |
Temporarily disable partial LSE.
Due to a bug in it. Add a regression test.
Bug: 197818595
Test: 828-partial-lse
(cherry picked from commit 18074d2b59ae56dcfccea770ceb515215c8eb53f)
(cherry picked from commit a38b7355a603772424a8212840849094ce0ddeb3)
Merged-In: I65da4f7ef09cd2a1f6c4b21799ecd7a42c1adac2
Change-Id: I3eb52dc091264e617bb711260fb4950d15c7f50b
Diffstat (limited to 'compiler')
-rw-r--r-- | compiler/optimizing/load_store_elimination.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/optimizing/load_store_elimination.h b/compiler/optimizing/load_store_elimination.h index e73ef5ef34..6ad2eb2c51 100644 --- a/compiler/optimizing/load_store_elimination.h +++ b/compiler/optimizing/load_store_elimination.h @@ -27,7 +27,7 @@ class LoadStoreElimination : public HOptimization { public: // Whether or not we should attempt partial Load-store-elimination which // requires additional blocks and predicated instructions. - static constexpr bool kEnablePartialLSE = true; + static constexpr bool kEnablePartialLSE = false; // Controls whether to enable VLOG(compiler) logs explaining the transforms taking place. static constexpr bool kVerboseLoggingMode = false; |