summaryrefslogtreecommitdiff
path: root/compiler/optimizing/graph_checker.h
diff options
context:
space:
mode:
author David Brazdil <dbrazdil@google.com> 2015-06-26 09:59:52 +0000
committer David Brazdil <dbrazdil@google.com> 2015-06-26 09:59:52 +0000
commit3e18738bd338e9f8363b26bc895f38c0ec682824 (patch)
tree708013ef06cfb524f040b2b5c494f7f3cb84ac2c /compiler/optimizing/graph_checker.h
parent0b5c7d1994b76090afcc825e737f2b8c546da2f8 (diff)
Revert "ART: Implement try/catch blocks in Builder"
Causes OutOfMemory issues, need to investigate. This reverts commit 0b5c7d1994b76090afcc825e737f2b8c546da2f8. Change-Id: I263e6cc4df5f9a56ad2ce44e18932ca51d7e349f
Diffstat (limited to 'compiler/optimizing/graph_checker.h')
-rw-r--r--compiler/optimizing/graph_checker.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/optimizing/graph_checker.h b/compiler/optimizing/graph_checker.h
index bafa69d422..b4314da03b 100644
--- a/compiler/optimizing/graph_checker.h
+++ b/compiler/optimizing/graph_checker.h
@@ -48,10 +48,6 @@ class GraphChecker : public HGraphDelegateVisitor {
// Check that the HasBoundsChecks() flag is set for bounds checks.
void VisitBoundsCheck(HBoundsCheck* check) OVERRIDE;
- // Check that the Return and ReturnVoid jump to the exit block.
- void VisitReturn(HReturn* ret) OVERRIDE;
- void VisitReturnVoid(HReturnVoid* ret) OVERRIDE;
-
// Was the last visit of the graph valid?
bool IsValid() const {
return errors_.empty();