diff options
Diffstat (limited to 'runtime/arch/instruction_set_features.h')
-rw-r--r-- | runtime/arch/instruction_set_features.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/runtime/arch/instruction_set_features.h b/runtime/arch/instruction_set_features.h index 2c6e6995bc..e4513ef272 100644 --- a/runtime/arch/instruction_set_features.h +++ b/runtime/arch/instruction_set_features.h @@ -28,6 +28,7 @@ namespace art { class ArmInstructionSetFeatures; class Arm64InstructionSetFeatures; class MipsInstructionSetFeatures; +class Mips64InstructionSetFeatures; class X86InstructionSetFeatures; class X86_64InstructionSetFeatures; @@ -87,6 +88,9 @@ class InstructionSetFeatures { // Down cast this MipsInstructionFeatures. const MipsInstructionSetFeatures* AsMipsInstructionSetFeatures() const; + // Down cast this Mips64InstructionFeatures. + const Mips64InstructionSetFeatures* AsMips64InstructionSetFeatures() const; + // Down cast this X86InstructionFeatures. const X86InstructionSetFeatures* AsX86InstructionSetFeatures() const; |