diff options
author | Bill Buzbee <buzbee@google.com> | 2009-11-19 11:37:21 -0800 |
---|---|---|
committer | Bill Buzbee <buzbee@google.com> | 2009-11-19 11:37:21 -0800 |
commit | ab875c79c56eacc510b09710d38a9b20f7337486 (patch) | |
tree | 2bd584d0712160986101d686d5fe015a7f585f2b | |
parent | 142ea85f73c1e76f5188986aaa76c11a293f57fd (diff) | |
download | android_dalvik-ab875c79c56eacc510b09710d38a9b20f7337486.tar.gz android_dalvik-ab875c79c56eacc510b09710d38a9b20f7337486.tar.bz2 android_dalvik-ab875c79c56eacc510b09710d38a9b20f7337486.zip |
Jit: fix for string/indexOf handler.
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: |