Skip to content

ext/pcre: fix spelling in C code comments #18218

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ext/pcre/pcre2lib/sljit/sljitNativeARM_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ static const sljit_u8 freg_ebit_map[((SLJIT_NUMBER_OF_FLOAT_REGISTERS + 2) << 1)
#define VN(vn) (((sljit_ins)freg_map[vn] << 16) | ((sljit_ins)freg_ebit_map[vn] << 7))

/* --------------------------------------------------------------------- */
/* Instrucion forms */
/* Instruction forms */
/* --------------------------------------------------------------------- */

/* The instruction includes the AL condition.
Expand Down
2 changes: 1 addition & 1 deletion ext/pcre/pcre2lib/sljit/sljitNativeARM_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ static const sljit_u8 freg_map[SLJIT_NUMBER_OF_FLOAT_REGISTERS + 3] = {
#define VM(vm) ((sljit_ins)freg_map[vm] << 16)

/* --------------------------------------------------------------------- */
/* Instrucion forms */
/* Instruction forms */
/* --------------------------------------------------------------------- */

#define ADC 0x9a000000
Expand Down
2 changes: 1 addition & 1 deletion ext/pcre/pcre2lib/sljit/sljitNativeARM_T2_32.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ static const sljit_u8 freg_ebit_map[((SLJIT_NUMBER_OF_FLOAT_REGISTERS + 2) << 1)
(COPY_BITS(imm, 11, 26, 1) | COPY_BITS(imm, 8, 12, 3) | ((sljit_ins)imm & 0xff))

/* --------------------------------------------------------------------- */
/* Instrucion forms */
/* Instruction forms */
/* --------------------------------------------------------------------- */

/* dot '.' changed to _
Expand Down
2 changes: 1 addition & 1 deletion ext/pcre/pcre2lib/sljit/sljitNativeLOONGARCH_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ static const sljit_u8 freg_map[SLJIT_NUMBER_OF_FLOAT_REGISTERS + 3] = {
};

/* --------------------------------------------------------------------- */
/* Instrucion forms */
/* Instruction forms */
/* --------------------------------------------------------------------- */

/*
Expand Down
2 changes: 1 addition & 1 deletion ext/pcre/pcre2lib/sljit/sljitNativeMIPS_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ static const sljit_u8 freg_map[SLJIT_NUMBER_OF_FLOAT_REGISTERS + 4] = {
#endif /* SLJIT_CONFIG_MIPS_32 */

/* --------------------------------------------------------------------- */
/* Instrucion forms */
/* Instruction forms */
/* --------------------------------------------------------------------- */

#define S(s) ((sljit_ins)reg_map[s] << 21)
Expand Down
2 changes: 1 addition & 1 deletion ext/pcre/pcre2lib/sljit/sljitNativePPC_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ static const sljit_u8 freg_map[SLJIT_NUMBER_OF_FLOAT_REGISTERS + 3] = {
};

/* --------------------------------------------------------------------- */
/* Instrucion forms */
/* Instruction forms */
/* --------------------------------------------------------------------- */
#define D(d) ((sljit_ins)reg_map[d] << 21)
#define S(s) ((sljit_ins)reg_map[s] << 21)
Expand Down
2 changes: 1 addition & 1 deletion ext/pcre/pcre2lib/sljit/sljitNativeRISCV_common.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ static const sljit_u8 vreg_map[SLJIT_NUMBER_OF_VECTOR_REGISTERS + 3] = {
};

/* --------------------------------------------------------------------- */
/* Instrucion forms */
/* Instruction forms */
/* --------------------------------------------------------------------- */

#define RD(rd) ((sljit_ins)reg_map[rd] << 7)
Expand Down
Loading