https://gcc.gnu.org/g:527a2aaa5a6149940815532fe6d88bf951bf1801
commit r17-1129-g527a2aaa5a6149940815532fe6d88bf951bf1801 Author: Dhruv Chawla <[email protected]> Date: Thu May 21 11:45:24 2026 +0000 visium: Fix typos in visium.h Signed-off-by: Dhruv Chawla <[email protected]> gcc/ChangeLog: * config/visium/visium.h (CASE_VECTOR_PC_RELATIVE): Fix typos. Diff: --- gcc/config/visium/visium.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gcc/config/visium/visium.h b/gcc/config/visium/visium.h index 7dd29db7c0cf..245f71e83968 100644 --- a/gcc/config/visium/visium.h +++ b/gcc/config/visium/visium.h @@ -1411,7 +1411,7 @@ do \ If this macro is not defined, nothing special is output at the end of a jump table. - Here we output a word of zero so that jump-tables can be seperated + Here we output a word of zero so that jump-tables can be separated in reverse assembly. */ #define ASM_OUTPUT_CASE_END(STREAM, NUM, TABLE) \ asm_fprintf (STREAM, "\t.long 0\n") @@ -1501,14 +1501,14 @@ do \ #undef CASE_VECTOR_PC_RELATIVE /* This says how to output assembler code to declare an - unitialised external linkage data object. */ + uninitialised external linkage data object. */ #define ASM_OUTPUT_COMMON(STREAM, NAME, SIZE, ROUNDED) \ ( fputs ("\n\t.comm ", (STREAM)), \ assemble_name ((STREAM), (NAME)), \ fprintf ((STREAM), "," HOST_WIDE_INT_PRINT_UNSIGNED"\n", ROUNDED)) /* This says how to output assembler code to declare an - unitialised internal linkage data object. */ + uninitialised internal linkage data object. */ #define ASM_OUTPUT_LOCAL(STREAM, NAME, SIZE, ROUNDED) \ ( fputs ("\n\t.lcomm ", (STREAM)), \ assemble_name ((STREAM), (NAME)), \
