diff options
Diffstat (limited to 'compiler/optimizing/code_generator.cc')
-rw-r--r-- | compiler/optimizing/code_generator.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/compiler/optimizing/code_generator.cc b/compiler/optimizing/code_generator.cc index 2a57fdc929..ba5f7d8fab 100644 --- a/compiler/optimizing/code_generator.cc +++ b/compiler/optimizing/code_generator.cc @@ -386,7 +386,9 @@ CodeGenerator* CodeGenerator::Create(HGraph* graph, compiler_options); } case kArm64: { - return new arm64::CodeGeneratorARM64(graph, compiler_options); + return new arm64::CodeGeneratorARM64(graph, + *isa_features.AsArm64InstructionSetFeatures(), + compiler_options); } case kMips: return nullptr; |