diff options
author | 2015-07-15 15:22:01 +0000 | |
---|---|---|
committer | 2015-07-15 15:22:02 +0000 | |
commit | 5c03f3698f5e2e0d762e2e15ec00310b6cdab4fe (patch) | |
tree | 9b990552fbf7e0ba91954758b07e2a51d95da9cd /compiler/optimizing/graph_checker.h | |
parent | 045da88bd0230ddf48aaf037b3d6c16fbb97ba65 (diff) | |
parent | ffee3d33f3ea39aa6031c3d2ff29c4806c8dcc51 (diff) |
Merge "ART: Build SSA form when try/catch is present"
Diffstat (limited to 'compiler/optimizing/graph_checker.h')
-rw-r--r-- | compiler/optimizing/graph_checker.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/optimizing/graph_checker.h b/compiler/optimizing/graph_checker.h index 7c72e23e2d..0e270dbe18 100644 --- a/compiler/optimizing/graph_checker.h +++ b/compiler/optimizing/graph_checker.h @@ -48,6 +48,9 @@ class GraphChecker : public HGraphDelegateVisitor { // Check that the HasBoundsChecks() flag is set for bounds checks. void VisitBoundsCheck(HBoundsCheck* check) OVERRIDE; + // Check successors of blocks ending in TryBoundary. + void VisitTryBoundary(HTryBoundary* try_boundary) OVERRIDE; + // Check that HCheckCast and HInstanceOf have HLoadClass as second input. void VisitCheckCast(HCheckCast* check) OVERRIDE; void VisitInstanceOf(HInstanceOf* check) OVERRIDE; |