From cee7524afa53216fcd13df8122ece495548a829c Mon Sep 17 00:00:00 2001 From: Alexandre Rames Date: Wed, 8 Oct 2014 18:41:21 +0100 Subject: ARM64: Update code after the VIXL 1.6 release. We now leave the assembler buffer management to VIXL. Change-Id: Ieefe83cf5cf5e1ab8c924b0e7dc03af6a55053ae --- compiler/jni/quick/jni_compiler.cc | 4 ---- 1 file changed, 4 deletions(-) (limited to 'compiler/jni') diff --git a/compiler/jni/quick/jni_compiler.cc b/compiler/jni/quick/jni_compiler.cc index 78a228be47..f6795ea28c 100644 --- a/compiler/jni/quick/jni_compiler.cc +++ b/compiler/jni/quick/jni_compiler.cc @@ -428,10 +428,6 @@ CompiledMethod* ArtJniCompileMethodInternal(CompilerDriver* driver, // 17. Finalize code generation __ EmitSlowPaths(); size_t cs = __ CodeSize(); - if (instruction_set == kArm64) { - // Test that we do not exceed the buffer size. - CHECK(cs < arm64::kBufferSizeArm64); - } std::vector managed_code(cs); MemoryRegion code(&managed_code[0], managed_code.size()); __ FinalizeInstructions(code); -- cgit v1.2.3