diff options
| author | 2015-04-25 03:56:59 +0000 | |
|---|---|---|
| committer | 2015-04-25 03:56:59 +0000 | |
| commit | 5cf71a082e6638b61d6743bbe285f24d5c5ea6fc (patch) | |
| tree | c62ba17fb96bdd15dd61b0193c5047c91015e0b6 /compiler/optimizing/graph_checker.h | |
| parent | 51f271c8773bfcb009d5c74f43315431bc09d7a9 (diff) | |
| parent | 4c9dd79c58353ca6612eb352bea2656c0c5bc1d7 (diff) | |
am 4c9dd79c: am 940c65d6: Merge "[optimizing] Rename HasArrayAccesses and check it"
* commit '4c9dd79c58353ca6612eb352bea2656c0c5bc1d7':
[optimizing] Rename HasArrayAccesses and check it
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 45e8804edb..b4314da03b 100644 --- a/compiler/optimizing/graph_checker.h +++ b/compiler/optimizing/graph_checker.h @@ -45,6 +45,9 @@ class GraphChecker : public HGraphDelegateVisitor { // Perform control-flow graph checks on instruction. void VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) OVERRIDE; + // Check that the HasBoundsChecks() flag is set for bounds checks. + void VisitBoundsCheck(HBoundsCheck* check) OVERRIDE; + // Was the last visit of the graph valid? bool IsValid() const { return errors_.empty(); |