Skip to content

Commit 67d79fe

Browse files
committed
squashme
1 parent 8a7804b commit 67d79fe

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pp.c

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6680,8 +6680,8 @@ PP_wrapped(pp_reverse, 0, 1)
66806680
} else {
66816681
STRLEN i = 0;
66826682
STRLEN j = len;
6683-
U32 u32_1, u32_2;
6684-
U16 u16_1, u16_2;
6683+
uint32_t u32_1, u32_2;
6684+
uint16_t u16_1, u16_2;
66856685
char * outp= SvPVX(TARG);
66866686
/* Take a chunk of bytes from the front and from the
66876687
* back, reverse the bytes in each and and swap the
@@ -6690,7 +6690,7 @@ PP_wrapped(pp_reverse, 0, 1)
66906690
* into bswap instructions by the compiler.
66916691
*/
66926692
#ifdef HAS_QUAD
6693-
U64 u64_1, u64_2;
6693+
uint64_t u64_1, u64_2;
66946694
while (j - i >= 16) {
66956695
memcpy(&u64_1, src + j - 8, 8);
66966696
memcpy(&u64_2, src + i, 8);
@@ -6780,11 +6780,11 @@ PP_wrapped(pp_reverse, 0, 1)
67806780
}
67816781
STRLEN i = 0;
67826782
STRLEN j = len;
6783-
U32 u32_1, u32_2;
6784-
U16 u16_1, u16_2;
6783+
uint32_t u32_1, u32_2;
6784+
uint16_t u16_1, u16_2;
67856785
/* Reverse the buffer in place, in chunks where possible */
67866786
#ifdef HAS_QUAD
6787-
U64 u64_1, u64_2;
6787+
uint64_t u64_1, u64_2;
67886788
while (j - i >= 16) {
67896789
memcpy(&u64_1, up + j - 8, 8);
67906790
memcpy(&u64_2, up + i, 8);

0 commit comments

Comments
 (0)