Removing some trailing whitespace

This commit is contained in:
Jared Miller 2022-07-21 21:21:58 -04:00
parent cf5f6f1d2d
commit f413a77069
9 changed files with 13 additions and 13 deletions

View file

@ -54,7 +54,7 @@
jmp 297f jmp 297f
.byte 0xbf # mov $0x????xxxx,%edi .byte 0xbf # mov $0x????xxxx,%edi
.long \address .long \address
297: 297:
.endm .endm
// Loads 16-bit CONSTEXPR into Qw-register w/ optional zero-extend. // Loads 16-bit CONSTEXPR into Qw-register w/ optional zero-extend.

View file

@ -8,7 +8,7 @@ LIBC_LOG = $(LIBC_LOG_A_DEPS) $(LIBC_LOG_A)
LIBC_LOG_A = o/$(MODE)/libc/log/log.a LIBC_LOG_A = o/$(MODE)/libc/log/log.a
LIBC_LOG_A_FILES := \ LIBC_LOG_A_FILES := \
$(wildcard libc/log/thunks/*) \ $(wildcard libc/log/thunks/*) \
$(wildcard libc/log/*) $(wildcard libc/log/*)
LIBC_LOG_A_HDRS = $(filter %.h,$(LIBC_LOG_A_FILES)) LIBC_LOG_A_HDRS = $(filter %.h,$(LIBC_LOG_A_FILES))
LIBC_LOG_A_SRCS_C = $(filter %.c,$(LIBC_LOG_A_FILES)) LIBC_LOG_A_SRCS_C = $(filter %.c,$(LIBC_LOG_A_FILES))
LIBC_LOG_A_SRCS_S = $(filter %.S,$(LIBC_LOG_A_FILES)) LIBC_LOG_A_SRCS_S = $(filter %.S,$(LIBC_LOG_A_FILES))

View file

@ -63,7 +63,7 @@ _ZdaPvSt11align_val_t:
nop nop
// 𝑠𝑙𝑖𝑑𝑒 // 𝑠𝑙𝑖𝑑𝑒
.endfn _ZdaPvSt11align_val_t,weak .endfn _ZdaPvSt11align_val_t,weak
_ZdaPvm: _ZdaPvm:
// operator delete[](void*, unsigned long): // operator delete[](void*, unsigned long):
nop nop
// 𝑠𝑙𝑖𝑑𝑒 // 𝑠𝑙𝑖𝑑𝑒

View file

@ -48,11 +48,11 @@
// //
// //
// //
// //
// //
// //
// //
// //
// THERE WILL BE BLOCKS march 01 2017 // THERE WILL BE BLOCKS march 01 2017
// //
// @see libc/str/str.h // @see libc/str/str.h

View file

@ -47,7 +47,7 @@ htobe32:
htole32: htole32:
be32toh: be32toh:
le32toh: le32toh:
ntohl: ntohl:
htonl: mov %edi,%eax htonl: mov %edi,%eax
bswap %eax bswap %eax
ret ret
@ -64,7 +64,7 @@ htobe16:
htole16: htole16:
be16toh: be16toh:
le16toh: le16toh:
ntohs: ntohs:
htons: movzwl %di,%eax htons: movzwl %di,%eax
xchg %al,%ah xchg %al,%ah
ret ret

View file

@ -75,7 +75,7 @@ Tim Chen <tim.c.chen@linux.intel.com>\n"
// void sha256_transform_ni(uint32_t digest[static 8], // void sha256_transform_ni(uint32_t digest[static 8],
// const void *data, // const void *data,
// int32_t numBlocks); // int32_t numBlocks);
// //
// @param %rdi points to output digest // @param %rdi points to output digest
// @param %rsi points to input data // @param %rsi points to input data
// @param %rdx is number of blocks to process // @param %rdx is number of blocks to process

View file

@ -23,7 +23,7 @@
// This is intended for security-conscious applications. // This is intended for security-conscious applications.
// //
// @param rdi is dest // @param rdi is dest
// @param rsi is the number of bytes to set // @param rsi is the number of bytes to set
explicit_bzero: explicit_bzero:
jmp bzero jmp bzero
.endfn explicit_bzero,globl .endfn explicit_bzero,globl

View file

@ -20,7 +20,7 @@
// Magic words to unbreak build if GCOV flags are passed. // Magic words to unbreak build if GCOV flags are passed.
__gcov_init: __gcov_init:
ret ret
.endfn __gcov_init,globl,weak .endfn __gcov_init,globl,weak
@ -28,7 +28,7 @@ __gcov_exit:
ret ret
.endfn __gcov_exit,globl,weak .endfn __gcov_exit,globl,weak
__gcov_merge_add: __gcov_merge_add:
ret ret
.endfn __gcov_merge_add,globl,weak .endfn __gcov_merge_add,globl,weak

View file

@ -13,10 +13,10 @@
Terse mode output, getopt() command line processing, Terse mode output, getopt() command line processing,
optional stdin input, and HTML documentation added in optional stdin input, and HTML documentation added in
October 1998. October 1998.
Documentation for the -t (terse output) option added Documentation for the -t (terse output) option added
in July 2006. in July 2006.
Replaced table look-up for chi square to probability Replaced table look-up for chi square to probability
conversion with algorithmic computation in January 2008. conversion with algorithmic computation in January 2008.