On 2016-07-17 13:31:32 +0300, Martin Storsjö wrote: > --- > tests/checkasm/arm/checkasm.S | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/tests/checkasm/arm/checkasm.S b/tests/checkasm/arm/checkasm.S > index 2768bb3..9bbb1e2 100644 > --- a/tests/checkasm/arm/checkasm.S > +++ b/tests/checkasm/arm/checkasm.S > @@ -40,7 +40,7 @@ const register_init, align=3 > endconst > > const error_message_fpscr > - .asciz "failed to preserve register FPSCR" > + .asciz "failed to preserve register FPSCR, changed bits shifted left by > 5: %x" > error_message_gpr: > .asciz "failed to preserve register r%d" > error_message_vfp: > @@ -108,9 +108,9 @@ function checkasm_checked_call_\variant, export=1 > > fmrx r0, FPSCR > ldr r3, [sp, #8] > - eor r0, r0, r3 > + eor r1, r0, r3 > @ Ignore changes in the topmost 5 bits > - lsls r0, r0, #5 > + lsls r1, r1, #5 > bne 3f > .endif
looks a little weird that you haven't switched to r1 completly or just as the lsls destination but ok nevertheless Janne _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
