diff options
Diffstat (limited to 'runtime/interpreter/interpreter_common.cc')
-rw-r--r-- | runtime/interpreter/interpreter_common.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/interpreter/interpreter_common.cc b/runtime/interpreter/interpreter_common.cc index d84225e998..4e08e8c85b 100644 --- a/runtime/interpreter/interpreter_common.cc +++ b/runtime/interpreter/interpreter_common.cc @@ -1799,7 +1799,7 @@ bool DoFilledNewArray(const Instruction* inst, } return false; } - ObjPtr<mirror::Object> new_array = mirror::Array::Alloc<true>( + ObjPtr<mirror::Object> new_array = mirror::Array::Alloc( self, array_class, length, |