diff options
author | 2017-12-04 17:52:28 +0000 | |
---|---|---|
committer | 2017-12-04 17:52:28 +0000 | |
commit | d57fdd82fccfa15933033646c9436313b399d528 (patch) | |
tree | 20446e27ec69fa1f2588ac166a85b4e25f9cf861 /compiler/optimizing/nodes.cc | |
parent | 6f2960c633d6928fe8491a4bbb1e1eae82f25188 (diff) | |
parent | dbb9aef046301940d0b253c918a5c78b277330ba (diff) |
Merge "Log at places we fail to compile."
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 4a9da7ece1..d117bfb67d 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(); |