Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/m4-fix-ci' into armv7m
Browse files Browse the repository at this point in the history
  • Loading branch information
mkannwischer committed Dec 4, 2024
2 parents 3df686d + 1b80b2f commit efd31ce
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions examples/naive/armv7m/loop_vmov_cmp.s
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/* For example, r5 represents an address where we will stop iterating and r6 is
the actual pointer which is incremented inside the loop. */

mov.w r6, #0
add.w r5, r6, #64
vmov s0, r5

start:
add r6, r6, #4
vmov r5, s0
cmp r6, r5
bne start

0 comments on commit efd31ce

Please sign in to comment.