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
.byte 0xbf # mov $0x????xxxx,%edi
.long \address
297:
297:
.endm
// 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_FILES := \
$(wildcard libc/log/thunks/*) \
$(wildcard libc/log/*)
$(wildcard libc/log/*)
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_S = $(filter %.S,$(LIBC_LOG_A_FILES))

View file

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

View file

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

View file

@ -47,7 +47,7 @@ htobe32:
htole32:
be32toh:
le32toh:
ntohl:
ntohl:
htonl: mov %edi,%eax
bswap %eax
ret
@ -64,7 +64,7 @@ htobe16:
htole16:
be16toh:
le16toh:
ntohs:
ntohs:
htons: movzwl %di,%eax
xchg %al,%ah
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],
// const void *data,
// int32_t numBlocks);
//
//
// @param %rdi points to output digest
// @param %rsi points to input data
// @param %rdx is number of blocks to process

View file

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

View file

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

View file

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