Skip to content
This repository was archived by the owner on Feb 25, 2025. It is now read-only.

Commit e19bcb9

Browse files
dcharkescommit-bot@chromium.org
authored andcommitted
[vm/ffi] Fix Google3 build
Closes: https://buganizer.corp.google.com/issues/133497511 Change-Id: I89f4006afa3a9a97d493be2afcf58b490c003527 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/103803 Auto-Submit: Daco Harkes <[email protected]> Commit-Queue: Daco Harkes <[email protected]> Commit-Queue: Samir Jindel <[email protected]> Reviewed-by: Samir Jindel <[email protected]>
1 parent bd39cca commit e19bcb9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

runtime/vm/compiler/ffi_dbc_trampoline_x64_linux_mac.S

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ mov rbx, rdi /* Save argument in scratch register. */
1818
/* Copy stack arguments. */
1919
mov rax, [rbx+0x78] /* Load number of stack arguments. */
2020
cmp rax, 0x0 /* Check if number of stack arguments is 0. */
21-
jz 2f /* Skip loop if no stack arguments. */
21+
jz .done /* Skip loop if no stack arguments. */
2222
add rbx, 0x78 /* Offset RBX to point to stack arguments */
23-
1: /* Copy stack arguments loop. */
23+
.loop: /* Copy stack arguments loop. */
2424
push [rbx+0x8*rax] /* Push stack argument. */
2525
sub rax, 0x1 /* Decrement stack argument iterator. */
2626
cmp rax, 0x0 /* Compare iterator with 0 */
27-
jnz 1b /* Loop while iterator is not 0 */
27+
jnz .loop /* Loop while iterator is not 0 */
2828
sub rbx, 0x78 /* Restore RBX to original value. */
29-
2: /* End stack arguments loop. */
29+
.done: /* End stack arguments loop. */
3030

3131
/* Copy registers and fpu registers. */
3232
mov rdi, [rbx+0x8] /* kArg1Reg */

0 commit comments

Comments
 (0)