Parcourir la source

Fix some indentation nits.

perlasm's bizarre mix of asm and perl indentation and clever editors always
mess me up.

Change-Id: Iac906a636207867939cc327b4c21b8a982abce29
Reviewed-on: https://boringssl-review.googlesource.com/c/33844
Commit-Queue: Adam Langley <agl@google.com>
Reviewed-by: Adam Langley <agl@google.com>
kris/onging/CECPQ3_patch15
David Benjamin il y a 5 ans
committed by CQ bot account: commit-bot@chromium.org
Parent
révision
fb3f0638ba
1 fichiers modifiés avec 8 ajouts et 7 suppressions
  1. +8
    -7
      crypto/test/asm/trampoline-x86_64.pl

+ 8
- 7
crypto/test/asm/trampoline-x86_64.pl Voir le fichier

@@ -196,7 +196,7 @@ $code .= <<____;
movq $argc, %r11
____
foreach (@inp) {
$code .= <<____;
$code .= <<____;
dec %r11
js .Lcall
movq (%r10), $_
@@ -209,10 +209,11 @@ $code .= <<____;
dec %r11
js .Lcall

# This block should be:
# movq (%r10), %rtmp
# movq %rtmp, (%rax)
# There are no spare registers available, so we spill into the scratch space.
# This block should be:
# movq (%r10), %rtmp
# movq %rtmp, (%rax)
# There are no spare registers available, so we spill into the scratch
# space.
movq %r11, $scratch_offset(%rsp)
movq (%r10), %r11
movq %r11, (%rax)
@@ -227,7 +228,7 @@ $code .= <<____;
call *%rax

# Store what \$func did our state, so our caller can check.
movq $state_offset(%rsp), $state
movq $state_offset(%rsp), $state
____
$code .= store_caller_state(0, $state);

@@ -241,7 +242,7 @@ $code .= <<____;
addq \$$stack_alloc_size, %rsp
.cfi_adjust_cfa_offset -$stack_alloc_size

# %rax already contains \$func's return value, unmodified.
# %rax already contains \$func's return value, unmodified.
ret
.cfi_endproc
.Labi_test_trampoline_end:


Chargement…
Annuler
Enregistrer