diff options
author | 2016-03-30 19:09:03 +0100 | |
---|---|---|
committer | 2016-03-30 19:09:03 +0100 | |
commit | f355c3ff08710ac2eba3aac2aacc5e65caa06b4c (patch) | |
tree | 1d9f9487897fabc539f748be881f9c8140c16cef /compiler/optimizing/graph_checker.h | |
parent | 6f51d7756a9c66007fe7666b19399e1f60ff6092 (diff) |
Fix Boolean to integral types conversions.
Bug: 27616343
Change-Id: I050f92045bca1b8b5d6da53547cc617f17be84b1
Diffstat (limited to 'compiler/optimizing/graph_checker.h')
-rw-r--r-- | compiler/optimizing/graph_checker.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compiler/optimizing/graph_checker.h b/compiler/optimizing/graph_checker.h index a536b30fcd..83b198474c 100644 --- a/compiler/optimizing/graph_checker.h +++ b/compiler/optimizing/graph_checker.h @@ -67,6 +67,7 @@ class GraphChecker : public HGraphDelegateVisitor { void VisitReturnVoid(HReturnVoid* ret) OVERRIDE; void VisitSelect(HSelect* instruction) OVERRIDE; void VisitTryBoundary(HTryBoundary* try_boundary) OVERRIDE; + void VisitTypeConversion(HTypeConversion* instruction) OVERRIDE; void HandleLoop(HBasicBlock* loop_header); void HandleBooleanInput(HInstruction* instruction, size_t input_index); |