summaryrefslogtreecommitdiffstats
path: root/compiler/dex/quick/mir_to_lir.h
diff options
context:
space:
mode:
Diffstat (limited to 'compiler/dex/quick/mir_to_lir.h')
-rw-r--r--compiler/dex/quick/mir_to_lir.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/dex/quick/mir_to_lir.h b/compiler/dex/quick/mir_to_lir.h
index d041448..0d2da42 100644
--- a/compiler/dex/quick/mir_to_lir.h
+++ b/compiler/dex/quick/mir_to_lir.h
@@ -695,7 +695,7 @@ class Mir2Lir {
void ApplyLoadStoreElimination(LIR* head_lir, LIR* tail_lir);
void ApplyLoadHoisting(LIR* head_lir, LIR* tail_lir);
virtual void ApplyLocalOptimizations(LIR* head_lir, LIR* tail_lir);
- virtual void ApplyArchOptimizations(LIR*, LIR*, BasicBlock*) { return; };
+ virtual void ApplyArchOptimizations(LIR*, LIR*, BasicBlock*) { return; }
// Shared by all targets - implemented in ralloc_util.cc
int GetSRegHi(int lowSreg);
@@ -1356,7 +1356,7 @@ class Mir2Lir {
virtual void GenMachineSpecificExtendedMethodMIR(BasicBlock* bb, MIR* mir);
/* non virtual so it doesn't have to be implemented */
- virtual void MachineSpecificPreprocessMIR(BasicBlock*, MIR*) { };
+ virtual void MachineSpecificPreprocessMIR(BasicBlock*, MIR*) { }
/**
* @brief Lowers the kMirOpSelect MIR into LIR.
@@ -1422,7 +1422,7 @@ class Mir2Lir {
virtual LIR* OpMem(OpKind op, RegStorage r_base, int disp) = 0;
virtual void OpPcRelLoad(RegStorage reg, LIR* target) = 0;
virtual LIR* OpReg(OpKind op, RegStorage r_dest_src) = 0;
- virtual LIR* OpBkpt() { // not abstract so it doesn't have to be implemeted for other platforms
+ virtual LIR* OpBkpt() { // not abstract so it doesn't have to be implemeted for other platforms
return NULL;
};
virtual void OpRegCopy(RegStorage r_dest, RegStorage r_src) = 0;