diff options
author | 2021-01-23 13:28:56 +0000 | |
---|---|---|
committer | 2021-01-24 17:18:55 +0000 | |
commit | 791df7a161ecfa28eb69862a4bc285282463b960 (patch) | |
tree | a43b022307ea2df82a360164bdf2627cd07eb5b1 /compiler/optimizing/optimizing_compiler.cc | |
parent | 805769bb3800c1e47b0a76ce2c5ebb270a4ac69d (diff) |
Revert "Revert^2 "Partial Load Store Elimination""
This reverts commit fc1ce4e8be0d977e3d41699f5ec746d68f63c024.
Bug: 67037140
Reason for revert: Fails read-barrier-table-lookup tests.
Change-Id: I373867c728789bc14a4370b93a045481167d5f76
Diffstat (limited to 'compiler/optimizing/optimizing_compiler.cc')
-rw-r--r-- | compiler/optimizing/optimizing_compiler.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/compiler/optimizing/optimizing_compiler.cc b/compiler/optimizing/optimizing_compiler.cc index 8cd34cf68f..ac241aa9c9 100644 --- a/compiler/optimizing/optimizing_compiler.cc +++ b/compiler/optimizing/optimizing_compiler.cc @@ -194,9 +194,7 @@ class PassObserver : public ValueObject { GraphChecker checker(graph_, codegen_); last_seen_graph_size_ = checker.Run(pass_change, last_seen_graph_size_); if (!checker.IsValid()) { - LOG(FATAL_WITHOUT_ABORT) << "Error after " << pass_name << "(" << graph_->PrettyMethod() - << "): " << *graph_; - LOG(FATAL) << "(" << pass_name << "): " << Dumpable<GraphChecker>(checker); + LOG(FATAL) << "Error after " << pass_name << ": " << Dumpable<GraphChecker>(checker); } } } |