Add --image-classes to dex2oat
Change-Id: Ia88f9d302e0f9cd72be2199ee46d212d99864c67
diff --git a/src/runtime.h b/src/runtime.h
index 50f9ed1..1d9a3d1 100644
--- a/src/runtime.h
+++ b/src/runtime.h
@@ -190,13 +190,13 @@
kRefsAndArgs,
kLastCalleeSaveType // Value used for iteration
};
- Method* CreateCalleeSaveMethod(InstructionSet insns, CalleeSaveType type);
+ Method* CreateCalleeSaveMethod(InstructionSet instruction_set, CalleeSaveType type);
bool HasCalleeSaveMethod(CalleeSaveType type) const;
Method* GetCalleeSaveMethod(CalleeSaveType type) const;
void SetCalleeSaveMethod(Method* method, CalleeSaveType type);
- Method* CreateRefOnlyCalleeSaveMethod(InstructionSet insns);
- Method* CreateRefAndArgsCalleeSaveMethod(InstructionSet insns);
+ Method* CreateRefOnlyCalleeSaveMethod(InstructionSet instruction_set);
+ Method* CreateRefAndArgsCalleeSaveMethod(InstructionSet instruction_set);
int32_t GetStat(int kind);