Some common frontend tidying.
Change-Id: I1fa955cf8c4be45887e63085cbc2637569b7e545
diff --git a/src/compiler/dex/mir_dataflow.cc b/src/compiler/dex/mir_dataflow.cc
index c5ebc1b..add5ca0 100644
--- a/src/compiler/dex/mir_dataflow.cc
+++ b/src/compiler/dex/mir_dataflow.cc
@@ -843,8 +843,7 @@
};
/* Return the base virtual register for a SSA name */
-int MIRGraph::SRegToVReg(int ssa_reg)
-{
+int MIRGraph::SRegToVReg(int ssa_reg) const {
DCHECK_LT(ssa_reg, static_cast<int>(ssa_base_vregs_->num_used));
return GET_ELEM_N(ssa_base_vregs_, int, ssa_reg);
}