The character U+ff0c "," could be confused with the ASCII character U+002c ",", which is more common in source code.

This commit is contained in:
ThomasNS 2023-10-03 14:20:11 +02:00 committed by Alan Carvalho de Assis
parent b8b0ae9238
commit 2ffb72917d
5 changed files with 5 additions and 5 deletions

View File

@ -63,7 +63,7 @@ up_saveusercontext:
str r2, [r0, #(4*REG_R2)] str r2, [r0, #(4*REG_R2)]
str r3, [r0, #(4*REG_R3)] str r3, [r0, #(4*REG_R3)]
/* Save r12r14, pc */ /* Save r12, r14, pc */
mov r1, r12 mov r1, r12
mov r2, r14 mov r2, r14

View File

@ -56,7 +56,7 @@
up_saveusercontext: up_saveusercontext:
/* Save r0~r3, r12r14, pc */ /* Save r0~r3, r12, r14, pc */
str r0, [r0, #(4*REG_R0)] str r0, [r0, #(4*REG_R0)]
str r1, [r0, #(4*REG_R1)] str r1, [r0, #(4*REG_R1)]

View File

@ -56,7 +56,7 @@
up_saveusercontext: up_saveusercontext:
/* Save r0~r3, r12r14, pc */ /* Save r0~r3, r12, r14, pc */
str r0, [r0, #(4*REG_R0)] str r0, [r0, #(4*REG_R0)]
str r1, [r0, #(4*REG_R1)] str r1, [r0, #(4*REG_R1)]

View File

@ -325,7 +325,7 @@ __start:
set EXTER_REG,%g1 set EXTER_REG,%g1
ld [%g1+4], %g2 ld [%g1+4], %g2
or %g2, 0x4f, %g2 /**/ or %g2, 0x4f, %g2 /*, */
st %g2, [%g1+4] st %g2, [%g1+4]
nop nop

View File

@ -33,7 +33,7 @@
****************************************************************************/ ****************************************************************************/
#define NL_ITEM(cat, index) (((cat) << 16) | (index)) #define NL_ITEM(cat, index) (((cat) << 16) | (index))
#define NL_LOCALE_NAME(cat) NL_ITEM((cat) (0xffff)) #define NL_LOCALE_NAME(cat) NL_ITEM((cat), (0xffff))
#define CODESET NL_ITEM(LC_CTYPE, 0x0e) #define CODESET NL_ITEM(LC_CTYPE, 0x0e)