diff options
author | 2017-11-23 10:44:11 +0000 | |
---|---|---|
committer | 2017-12-01 13:03:29 +0000 | |
commit | dbb9aef046301940d0b253c918a5c78b277330ba (patch) | |
tree | 8803fa971c0200d56aa8eba7386374eecda01c17 /compiler/optimizing/nodes.cc | |
parent | 65e0432cdaf3ee170045b21943c24eae5d6a0357 (diff) |
Log at places we fail to compile.
Useful when diagnosing some compiler issues / limitations.
Test: test.py
Change-Id: I8759d0e78b0682b300ddcadfe02793432cab2036
Diffstat (limited to 'compiler/optimizing/nodes.cc')
-rw-r--r-- | compiler/optimizing/nodes.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/optimizing/nodes.cc b/compiler/optimizing/nodes.cc index fa580d9bed..ff4e9aa510 100644 --- a/compiler/optimizing/nodes.cc +++ b/compiler/optimizing/nodes.cc @@ -507,6 +507,7 @@ GraphAnalysisResult HGraph::AnalyzeLoops() const { if (block->IsCatchBlock()) { // TODO: Dealing with exceptional back edges could be tricky because // they only approximate the real control flow. Bail out for now. + VLOG(compiler) << "Not compiled: Exceptional back edges"; return kAnalysisFailThrowCatchLoop; } block->GetLoopInformation()->Populate(); |