# HG changeset patch # User Mychaela Falconia # Date 1477698349 0 # Node ID bfed7a5c21a6f226bfd4213724ddd7e3b5396169 # Parent 659fa1a26269d79d27d5bc15340b8dd0775ca25e target-utils/libc/bzero.S: changed signed conditions to unsigned diff -r 659fa1a26269 -r bfed7a5c21a6 target-utils/libc/bzero.S --- a/target-utils/libc/bzero.S Fri Oct 28 23:15:01 2016 +0000 +++ b/target-utils/libc/bzero.S Fri Oct 28 23:45:49 2016 +0000 @@ -39,8 +39,8 @@ * r3 = 0, and we know that the pointer in r0 is aligned to a word boundary. */ 3: subs r1, r1, #4 - strge r2, [r0], #4 - bgt 3b @ 1 + strcs r2, [r0], #4 + bhi 3b @ 1 bxeq lr @ 1/2 quick exit /* * No need to correct the count; we're only testing bits from now on