diff options
author | Solomon Peachy <pizza@shaftnet.org> | 2020-06-30 11:51:20 -0400 |
---|---|---|
committer | Solomon Peachy <pizza@shaftnet.org> | 2020-06-30 16:30:35 +0000 |
commit | 08d8b6472cdb46d3fb7e62bfd504196fa8fa6f40 (patch) | |
tree | e3eb18de2da88a40ca117e32838de45d37af1081 | |
parent | aec381c4c6d9684b8f76b0fd4aaae63076f483e0 (diff) |
fractals: Clean up ARM asm
No functional change, just using modern syntax.
Change-Id: I211bbcebd11da168c81dff4c409112d7a535b6ed
-rw-r--r-- | apps/plugins/fractals/cpu_arm.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/fractals/cpu_arm.h b/apps/plugins/fractals/cpu_arm.h index ea4595b7d2..929f5d427c 100644 --- a/apps/plugins/fractals/cpu_arm.h +++ b/apps/plugins/fractals/cpu_arm.h @@ -30,11 +30,11 @@ inline static long muls32_asr26(long a, long b) "mov %[r], %[r], lsr #26 \n" "orr %[r], %[r], %[t1], lsl #6 \n" : /* outputs */ - [r] "=&r,&r,&r"(r), - [t1]"=&r,&r,&r"(t1) + [r] "=&r" (r), + [t1] "=&r" (t1) : /* inputs */ - [a] "%r,%r,%r" (a), - [b] "r,0,1" (b) + [a] "r" (a), + [b] "r" (b) ); return r; } |