diff options
Diffstat (limited to 'compiler-rt/lib/arm/umodsi3.S')
-rw-r--r-- | compiler-rt/lib/arm/umodsi3.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/arm/umodsi3.S b/compiler-rt/lib/arm/umodsi3.S index e3e391bafcf..3a2ab2b8775 100644 --- a/compiler-rt/lib/arm/umodsi3.S +++ b/compiler-rt/lib/arm/umodsi3.S @@ -33,7 +33,7 @@ DEFINE_COMPILERRT_FUNCTION(__umodsi3) subs i, r3, r2 bxlt lr // return a if MSB(a) < MSB(b) -L_mainLoop: +LOCAL_LABEL(mainLoop): // This loop basically implements the following: // // do { @@ -49,7 +49,7 @@ L_mainLoop: subs r, a, b, lsl i movhs a, r subsne i, i, #1 - bhi L_mainLoop + bhi LOCAL_LABEL(mainLoop) // Do the final test subtraction and update of remainder (i == 0), as it is // not performed in the main loop. |