diff options
4 files changed, 4 insertions, 4 deletions
diff --git a/vm/compiler/template/armv5te/TEMPLATE_STRING_INDEXOF.S b/vm/compiler/template/armv5te/TEMPLATE_STRING_INDEXOF.S index 3eb3e87bd..84c488073 100644 --- a/vm/compiler/template/armv5te/TEMPLATE_STRING_INDEXOF.S +++ b/vm/compiler/template/armv5te/TEMPLATE_STRING_INDEXOF.S @@ -57,7 +57,7 @@ * r3, r4, r9, r10, r11, r12 available for loading string data */ - sub r8, #4 + subs r8, #4 blt indexof_remainder indexof_loop4: diff --git a/vm/compiler/template/out/CompilerTemplateAsm-armv5te-vfp.S b/vm/compiler/template/out/CompilerTemplateAsm-armv5te-vfp.S index c53af2b6a..00385a5f7 100644 --- a/vm/compiler/template/out/CompilerTemplateAsm-armv5te-vfp.S +++ b/vm/compiler/template/out/CompilerTemplateAsm-armv5te-vfp.S @@ -1285,7 +1285,7 @@ dvmCompiler_TEMPLATE_STRING_INDEXOF: * r3, r4, r9, r10, r11, r12 available for loading string data */ - sub r8, #4 + subs r8, #4 blt indexof_remainder indexof_loop4: diff --git a/vm/compiler/template/out/CompilerTemplateAsm-armv5te.S b/vm/compiler/template/out/CompilerTemplateAsm-armv5te.S index 11689f273..f452787d8 100644 --- a/vm/compiler/template/out/CompilerTemplateAsm-armv5te.S +++ b/vm/compiler/template/out/CompilerTemplateAsm-armv5te.S @@ -1010,7 +1010,7 @@ dvmCompiler_TEMPLATE_STRING_INDEXOF: * r3, r4, r9, r10, r11, r12 available for loading string data */ - sub r8, #4 + subs r8, #4 blt indexof_remainder indexof_loop4: diff --git a/vm/compiler/template/out/CompilerTemplateAsm-armv7-a.S b/vm/compiler/template/out/CompilerTemplateAsm-armv7-a.S index 8e0e72362..cfc50faca 100644 --- a/vm/compiler/template/out/CompilerTemplateAsm-armv7-a.S +++ b/vm/compiler/template/out/CompilerTemplateAsm-armv7-a.S @@ -1285,7 +1285,7 @@ dvmCompiler_TEMPLATE_STRING_INDEXOF: * r3, r4, r9, r10, r11, r12 available for loading string data */ - sub r8, #4 + subs r8, #4 blt indexof_remainder indexof_loop4: |